// File Name: UpDownCounterV2.v
module UpDownCounterV2(
	input Clock,
	input Reset,
	input Enable,
	input UpDown,
	output Strong,
	output Taken,
	output [1:0] Count
	);

endmodule // UpDownCounterV2