- UID
- 125278
- 性别
- 男
|
task shift_out; begin out_flag = 1; for(i=6;i>=0;i=i-1) begin @ (negedge scl); #`timeslice; sda_buf = sda_buf<<1; end @(negedge scl) #`timeslice sda_buf[7] = 1; //非应答信号输出 @(negedge scl) #`timeslice out_flag = 0; end endtask 这个@(negedge scl)可以在任务里面用吗? 编译的时候怎么老出错啊? 那位知道? 谢谢了 |
|