weibode01 发表于 2010-11-9 15:08:34

四位锁存器源程序

四位锁存器源程序
module reg4(set,dain,daout);
input set;
input dain;
output daout;
wire set;
reg daout;
always @(posedge set)
daout<=dain;
endmodule
页: [1]
查看完整版本: 四位锁存器源程序