引数で指定したクロック数だけwaitするタスク。
task clock_wait;
input integer no_of_clocks;
begin
repeat (no_of_clocks) @(posedge CLK_I) ;
end
endtask
Go to list of users who liked
More than 5 years have passed since last update.
引数で指定したクロック数だけwaitするタスク。
task clock_wait;
input integer no_of_clocks;
begin
repeat (no_of_clocks) @(posedge CLK_I) ;
end
endtask
Register as a new user and use Qiita more conveniently
Go to list of users who liked