题目内容:
module CNT4(CLK,Q);()output [3:0] Q; input CLK;reg [3:0] Q ;always @(posedge())Q = Q+1 ; endmodule
A.CLK
B.output
C.[3:0]
D.Q
参考答案:
module CNT4(CLK,Q);()output [3:0] Q; input CLK;reg [3:0] Q ;always @(posedge())Q = Q+1 ; endmodule
A.CLK
B.output
C.[3:0]
D.Q