Subject: | Verilog::Preproc inserts extra space |
When Verilog::Preproc processes the attached file, the line
parameter TAP = `W'b1001;
gets returned as
parameter TAP = 4 'b1001;
(there was a previous `define of W as 4), which no longer parses as a
single verilog number (the number callback gets called twice).
Subject: | pr596.v |