Files
hello-world/v/vhdl.vhdl
Martin Häger 52a9630dc2 Added VHDL
2010-08-06 11:08:57 +08:00

13 lines
219 B
VHDL
Executable File

use std.textio.all;
entity hello_world is
end hello_world;
architecture behaviour of hello_world is
begin
process
begin
write (output, String'("Hello world!"));
wait;
end process;
end behaviour;