summaryrefslogtreecommitdiff
path: root/sample
diff options
context:
space:
mode:
Diffstat (limited to 'sample')
-rw-r--r--sample/adder.hence7
-rw-r--r--sample/gates.hence12
2 files changed, 19 insertions, 0 deletions
diff --git a/sample/adder.hence b/sample/adder.hence
new file mode 100644
index 0000000..f751a3b
--- /dev/null
+++ b/sample/adder.hence
@@ -0,0 +1,7 @@
+module adder
+
+input a
+input b
+
+expr r0: xor a b
+expr r1: and a b
diff --git a/sample/gates.hence b/sample/gates.hence
new file mode 100644
index 0000000..6cd6aae
--- /dev/null
+++ b/sample/gates.hence
@@ -0,0 +1,12 @@
+module gates
+
+input a
+input b
+
+expr and: and a b
+expr or: or a b
+expr nand: nand a b
+expr nor: nor a b
+expr xor: xor a b
+expr nota: not a
+expr notb: not b