您的位置:首页 > 其它

Procedural Statements-各种功能模块简单说明(systemverilog)

2014-08-20 23:12 225 查看
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.
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: