`include "lisp_processor.v" 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(counter[7]), .led(LED), .uart_tx(UART_TX), .uart_rx(UART_RX)); endmodule