]> iEval git - yule.git/blobdiff - flash.v
Writer now works fine
[yule.git] / flash.v
diff --git a/flash.v b/flash.v
index 7168053859171bb48a3cd95a13f7f1dca7268fba..eacbce0356811b35c7d3ebd29bc1746e7555df9e 100644 (file)
--- a/flash.v
+++ b/flash.v
@@ -1,4 +1,10 @@
-`include "processor_4.v"
+`include "lisp_processor.v"
+
+`ifdef SIM
+`define SCALING 0
+`else
+`define SCALING 7
+`endif
 
 module top (input CLK, output [4:0] LED, output UART_TX, input UART_RX);
    // Prescaler on the clock
@@ -9,7 +15,7 @@ module top (input CLK, output [4:0] LED, output UART_TX, input UART_RX);
    end
 
    // Connect up the processor
-   PROCESSOR cpu(.clk(counter[10]),
+   PROCESSOR cpu(.clk(CLK),
                                 .led(LED),
                                 .uart_tx(UART_TX),
                                 .uart_rx(UART_RX));
This page took 0.017914 seconds and 4 git commands to generate.