mirror of https://github.com/zachjs/sv2v.git
7 lines
139 B
Systemverilog
7 lines
139 B
Systemverilog
|
|
module top;
|
||
|
|
function automatic logic [31:0] nop();
|
||
|
|
return 32'h00000013;
|
||
|
|
endfunction
|
||
|
|
initial $display(nop());
|
||
|
|
endmodule
|