B
Brian Davis
Guest
Does anyone know how to turn off the "KERNEL:" prefixing that occurs in Active-HDL ( using 9.2 Lattice Edition ) when one writes to STDOUT ?
The closest thing I've found in the documentation is 'printdisplaytasksource', which just makes the prefixed message even more verbose.
I have an existing testbench which writes log messages to STDOUT for later parsing; having this extra "KERNEL:" string prefixed to every write breaks the parser.
i.e., the following VHDL:
write (l, String'("Hello world!"));
writeline (output, l);
Produces:
KERNEL: Hello world!
Instead of the expected:
Hello world!
-Brian
The closest thing I've found in the documentation is 'printdisplaytasksource', which just makes the prefixed message even more verbose.
I have an existing testbench which writes log messages to STDOUT for later parsing; having this extra "KERNEL:" string prefixed to every write breaks the parser.
i.e., the following VHDL:
write (l, String'("Hello world!"));
writeline (output, l);
Produces:
KERNEL: Hello world!
Instead of the expected:
Hello world!
-Brian