summaryrefslogtreecommitdiff
path: root/tests/hana/test_parser_directives_define_simpledef_test.v
blob: 4a5d2345c54cc3b88d6a59a9d09377ada8bb953a (plain)
1
2
3
4
5
6
7
8
9
`define parvez ahmad
`define  WIRE wire
`define TEN 10

module `parvez();
parameter param = `TEN;
`WIRE w;
assign w = `TEN;
endmodule