/* * tutor - Top-Level * 8-bit Counter with Enable, Clear, Load, Up/Down */ module tutor (CLK, NOTCLR, CLKEN, NOTLD, UPCNT, DI, QO_LO); input CLK, NOTCLR, CLKEN, NOTLD, UPCNT; input [7:0] DI; output [7:0] QO_LO; counter my_counter (.C(CLK), .NCLR(NOTCLR), .CE(CLKEN), .NL(NOTLD), .UP(UPCNT), .D(DI), .NQ(QO_LO)); endmodule