Re: bit-flip with NCSim
I asked someone, and they gave me two solutions.
You can escape every abnormal character in the name with a backslash
(including the opening backslash and closing space). This would be
rather unwieldy for your name: "\\G\/tmp\[0\]\ ".
Or you can use a super-escape of an @ character followed by enclosing
the escaped name in curly braces: "@{\G/tmp[0] }"
Alternately, you can use @_ if you need to allow curly braces in the
name, to tell it to terminate on a space. With VHDL you can use @\ in
the same situation to tell it to terminate on a backslash.
|