empty_args.sv 139 Bytes
Newer Older
1 2 3 4 5 6
module top;
    function automatic logic [31:0] nop();
        return 32'h00000013;
    endfunction
    initial $display(nop());
endmodule