Posted by zz8318 on May 11, 2019
UVM #uvm #systemverilog Usually I use below code if I define an interface and bind it. interface my_if (input iCLK, input iRSTb, inout [2: 0] x_send, inout [2: 0] y_send); clocking master_cb @ (posedge iCLK); input iRSTb; output x_send; output y_send; e ...
Question