Open Johnlon opened 4 years ago
Macro support seems realy flakey.
`define test1(expected) assign expected = 1'b1; module testCase(); `test1(aa, bb); // gave Unknown macro endmodule : testCase
But if I make a random change to the name it works...
`define test1a(expected) assign expected = 1'b1; module testCase(); `test1a(aa, bb); // it works?? endmodule : testCase
But then make some distant unrelated change and it fails to resolve the macros again.
Seems to work one minute and not the next.
Even the files above seem to work occasionally?
Macro support seems realy flakey.
But if I make a random change to the name it works...
But then make some distant unrelated change and it fails to resolve the macros again.
Seems to work one minute and not the next.
Even the files above seem to work occasionally?