/* * Design: ECE 274 - Skeleton Module for Random Number Generator * Author: Roman Lysecky * Copyright 2008, All Rights Reserved * * Date: August 19, 2008 * */ `timescale 1ns / 1ns module RandomGen(Clk, Rst, RandomValue); input Clk, Rst; output [ ] RandomValue; // You need to determine the # of bits endmodule