X-Git-Url: http://git.ieval.ro/?a=blobdiff_plain;f=flash.v;fp=flash.v;h=0000000000000000000000000000000000000000;hb=eba9336246cb6b2ec09c104a79ef43f8bfc30250;hp=eacbce0356811b35c7d3ebd29bc1746e7555df9e;hpb=9c2d207078b3aae663ad8506f2aae47eda26134b;p=yule.git diff --git a/flash.v b/flash.v deleted file mode 100644 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