问题 1
What is the purpose of the 'fork-join' construct in Verilog?
'fork-join' is used for parallel execution of blocks within the same 'initial' or 'always' block.
Example:
initial begin fork begin // Block 1 $display("Block 1"); end join fork begin // Block 2 $display("Block 2"); end join end
保存以便复习
保存以便复习
收藏此条目、标记为困难题,或将其加入复习集合。
这有帮助吗?
添加评论
查看评论