begin_keywords.sv 311 Bytes
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
`begin_keywords "1364-2001-noconfig"
task foo;
    integer automatic = 2;
    $display(automatic * automatic);
endtask
`begin_keywords "1364-2005"
task automatic bar;
    integer logic = 3;
    $display(logic * logic);
endtask
`end_keywords
`end_keywords
module top;
    initial foo;
    initial bar;
endmodule