]> iEval git - yule.git/blobdiff - flash.v
Get rid of flash.v
[yule.git] / flash.v
diff --git a/flash.v b/flash.v
deleted file mode 100644 (file)
index eacbce0..0000000
--- a/flash.v
+++ /dev/null
@@ -1,22 +0,0 @@
-`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
-   reg [24:0]  counter = 0;
-
-   always @ (posedge CLK) begin
-      counter <= counter + 1;
-   end
-
-   // Connect up the processor
-   PROCESSOR cpu(.clk(CLK),
-                                .led(LED),
-                                .uart_tx(UART_TX),
-                                .uart_rx(UART_RX));
-endmodule
This page took 0.022645 seconds and 4 git commands to generate.