|
楼主 |
发表于 2015-5-3 11:35:38
|
显示全部楼层
回复 2# xyd237529 module hardreg(d,clk,clrb,q);
input clk,clrb;
input[3:0] d;
output[3:0] q;
flop flop(d[0],clk,clrb,q[0],);
flop(d[1],clk,clrb,q[1],);
flop(d[2],clk,clrb,q[2],);
flop(d[3],clk,clrb,q[3],);
endmodule
这样??
|
|