RosettaCodeData/Task/Hello-world-Text/VHDL/hello-world-text.vhdl

17 lines
307 B
VHDL
Raw Permalink Normal View History

2013-04-10 22:43:41 -07:00
LIBRARY std;
USE std.TEXTIO.all;
entity test is
end entity test;
architecture beh of test is
begin
process
variable line_out : line;
begin
2015-11-18 06:14:39 +00:00
write(line_out, string'("Hello world!"));
2013-04-10 22:43:41 -07:00
writeline(OUTPUT, line_out);
wait; -- needed to stop the execution
end process;
end architecture beh;