aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorzedarider <ymherklotz@gmail.com>2016-03-01 17:02:53 +0000
committerzedarider <ymherklotz@gmail.com>2016-03-01 17:02:53 +0000
commitf366410bdb099bfafe397795a6b36398a0234eb2 (patch)
tree578b7a074dbcb27f6e9f19faf88f98c1350ffabf
parentc238302339907c59fe915c1b442db1cb5ddc4899 (diff)
downloadverilog-f366410bdb099bfafe397795a6b36398a0234eb2.tar.gz
verilog-f366410bdb099bfafe397795a6b36398a0234eb2.zip
adding HelloWorld Demo
-rw-r--r--hello_world.v~8
1 files changed, 0 insertions, 8 deletions
diff --git a/hello_world.v~ b/hello_world.v~
deleted file mode 100644
index c8d64f1..0000000
--- a/hello_world.v~
+++ /dev/null
@@ -1,8 +0,0 @@
-// First Verilog HelloWorld Program
-
-module hello_world;
- initial begin
- $display("Hello World!");
- #10 $finish;
- end
-endmodule