/* * Design: ECE 274 - Skeleton Module for Multiplexed BCD Display Driver * Author: Roman Lysecky * Copyright 2008, All Rights Reserved * * Date: August 19, 2008 * */ `timescale 1ns / 1ns module BCDDispDriver(Clk, Rst, Tens, Ones, A, B, C, D, E, F, G, SegSel); input Clk, Rst; input [3:0] Tens, Ones; output A, B, C, D, E, F, G; output SegSel; endmodule