/* * Design: ECE 274 - Skeleton Module for Reaction Timer * Author: Roman Lysecky * Copyright 2008, All Rights Reserved * * Date: August 19, 2008 * */ `timescale 1ns / 1ns module ReactionTimer(Clk, Rst, Start, LED, ReactionTime, Cheat, Slow, Wait, RandomValue, LCDUpdate, LCDAck); input Start, LCDAck, Clk, Rst; input [ ] RandomValue; // You need to determine the # of bits output reg [9:0] ReactionTime; output reg [7:0] LED; output reg Cheat, Slow, Wait; output reg LCDUpdate; endmodule