Procedural statements are introduced by the following
initial // enable this statement at the beginning of simulation and execute it only once
final // do this statement once at the end of simulation
always, always_comb, always_latch, always_ff // loop forever
task // do these statements whenever the task is called
function // do these statements whenever the function is called and return a value
SystemVerilog adds C-like break, continue and return functionality, which do not require the use of block names.
本文介绍了SystemVerilog中的过程语句,包括initial、final、always、task和function等,以及C语言风格的break、continue和return等功能的使用。
580

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



