RosettaCodeData/Task/Hello-world-Text/VHDL/hello-world-text.vhdl
2023-07-01 13:44:08 -04:00

16 lines
307 B
VHDL

LIBRARY std;
USE std.TEXTIO.all;
entity test is
end entity test;
architecture beh of test is
begin
process
variable line_out : line;
begin
write(line_out, string'("Hello world!"));
writeline(OUTPUT, line_out);
wait; -- needed to stop the execution
end process;
end architecture beh;