From 52a9630dc2b854d3f98694d24f2c2b083acd7285 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martin=20H=E4ger?= Date: Mon, 8 Sep 2008 05:55:55 +0800 Subject: [PATCH] Added VHDL --- v/vhdl.vhdl | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100755 v/vhdl.vhdl 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