Forum Discussion
Altera_Forum
Honored Contributor
8 years agoThere are really two answers to this. You can either use the report statement:
report "test"; or you can use the textio library.
use std.textio.all;
....
write(OUTPUT, "test" & LF); -- test and line-feed
OUTPUT is a built in file that is the system console. There are many tutorials out there on how to use textio. VHDL does not have equivolents of the Verilog System Calls (that start with $).