General Description: When I attempt to open a project, save an existing Verilog source, or synthesize Verilog code, the following Dr. Watson error message appears:
An application error has occurred and an application error log is being generated jhdparse.exe Exception:access violation (0xc0000005), Address: 0x00416146
In the Project Navigator GUI, the last line in the transcript window will be: Done: failed with exit code: 0003
解决方案
This error will occur if there are lines in which the wrong tick symbol is used in the Verilog source code.
For example: assign A = 4`hZZZZ; (This will generate an error.) assign A = 4'hZZZZ; (This will not generate an error.)