empty_args.v 150 Bytes
Newer Older
1 2 3 4 5 6 7
module top;
    function automatic [31:0] nop;
        input foo;
        nop = 32'h00000013;
    endfunction
    initial $display(nop(0));
endmodule