attr.v 121 Bytes
Newer Older
1
(* a=1 *) module top;
2 3 4 5 6 7
    (* foo="bar" *) reg x;
    initial begin
        x = 1;
        $display(x);
    end
endmodule