Procedural blocks
1.Always条件过程块(conditional repeated execution)
always @(<signals>) begin
<statements>;
end
2.initial过程块(execute once)
initial begin
// Wait for Global Reset to Complete
#100;
<statements>;
end
3.always持续过程块(repeated execution)
always begin
<statements>;
end
点赞加关注博主(ID:FPGA小飞)的博文,咱们一起学习、一起进步吧~
929

被折叠的 条评论
为什么被折叠?



