Files
hello-world/v/vhdl.vhdl
Muhammed Ibrahim a8bd11ef8f adding ring language
2018-01-26 16:44:09 +02:00

13 lines
219 B
VHDL

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;