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