verilog task
时间:10-02
整理:3721RD
点击:
a[0] = 1'b1 in the testbench .
If implement it with a task. how to do?
task set_val;
input c;
input val;
begin
c = val;
end
endtask
anyone can tell me ?
If implement it with a task. how to do?
task set_val;
input c;
input val;
begin
c = val;
end
endtask
anyone can tell me ?
