含同步复位控制的D触发器module DFF2(input CLK, input D, input RST, output reg Q);always@(posedge CLK)Q=()?0:D;endmodule空格处应该填入:

含同步复位控制的D触发器module DFF2(input CLK, input D, input RST, output reg Q);always@(posedge CLK)Q=()?0:D;endmodule空格处应该填入:

A.CLK

B.RST

C.Q

D.D

正确答案:RST

猜你喜欢