verilog-vcd-parser icon indicating copy to clipboard operation
verilog-vcd-parser copied to clipboard

Parser fails to recognized single character symbol names

Open udif opened this issue 6 years ago • 0 comments

Parser failed with the following VCD line: $var wire 1 - D [3] $end

Reason was that VCDScanner.l contained the following: SCOPE_IDENTIFIER [a-zA-Z_][a-zA-Z_0-9\(\)]+ Changing this to: SCOPE_IDENTIFIER [a-zA-Z_][a-zA-Z_0-9\(\)]* Fixed the issue.

udif avatar Feb 22 '19 00:02 udif