aboutsummaryrefslogtreecommitdiff
path: root/examples/arithmetic.asm
diff options
context:
space:
mode:
Diffstat (limited to 'examples/arithmetic.asm')
-rw-r--r--examples/arithmetic.asm9
1 files changed, 9 insertions, 0 deletions
diff --git a/examples/arithmetic.asm b/examples/arithmetic.asm
new file mode 100644
index 0000000..ea2d317
--- /dev/null
+++ b/examples/arithmetic.asm
@@ -0,0 +1,9 @@
+; move imm 10 to register A
+mov a, 10
+; move imm 5 to register B
+mov b, 5
+; Add a & B
+add a, 2
+sub a, 2
+; Halt
+hlt