diff --git a/v/vhdl.vhdl b/v/vhdl.vhdl new file mode 100755 index 00000000..cf783f75 --- /dev/null +++ b/v/vhdl.vhdl @@ -0,0 +1,13 @@ +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; \ No newline at end of file