質問 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
復習用に保存
復習用に保存
この項目をブックマークに追加したり、難しい内容としてマークしたり、復習セットに入れたりできます。
役に立ちましたか?
コメントを追加
コメントを見る