/* * Design: ECE 274 - Skeleton Module for Binary to BCD Converter * Author: Roman Lysecky * Copyright 2008, All Rights Reserved * * Date: August 19, 2008 * */ `timescale 1ns / 1ns module Binary2BCD(Cnt, Tens, Ones); input [3:0] Cnt; output [3:0] Tens, Ones; endmodule