coalesce tokens across nested macros

This commit is contained in:
Zachary Snow
2019-10-11 22:53:08 -04:00
parent 37355920e0
commit fea5ff44eb
2 changed files with 11 additions and 1 deletions
+2
View File
@@ -1,5 +1,7 @@
`define SIZE 4
`define NESTED_SIZE `SIZE
`define NAME op
module t`NAME;
initial $display(`SIZE'ha);
initial $display(`NESTED_SIZE'ha);
endmodule