|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有账号?注册
x
fork join里面为啥不能与while(1)空循环?
fork
while(1)begin
@(negedge top.ecl.crc_check_finish);
`uvm_info(get_type_name(),$sformatf("negedge top.ecl.crc_check_finish coming"),UVM_LOW);
end
while(1)begin
@write_send_over;
write_send_over_flag=1'b1;
`uvm_info(get_type_name(),$sformatf("write_send_over has come"),UVM_LOW);
end
while(1) begin
end
join
第三个是空循环电话,其他两个while循环体内的也无法执行? |
|