aboutsummaryrefslogtreecommitdiff
path: root/examples/addition.asm
diff options
context:
space:
mode:
authorkrolxon <krolyxon@tutanota.com>2026-01-05 20:02:45 +0530
committerkrolxon <krolyxon@tutanota.com>2026-01-05 20:02:45 +0530
commit68d85406ef834312b39474c11be09e5ed1a228b4 (patch)
tree72abd67485bec09f401715dcd2e0495318cd8636 /examples/addition.asm
parentdeac6a4448be93c3c70655cea821e84a7a1b116c (diff)
add table example
Diffstat (limited to 'examples/addition.asm')
-rw-r--r--examples/addition.asm9
1 files changed, 0 insertions, 9 deletions
diff --git a/examples/addition.asm b/examples/addition.asm
deleted file mode 100644
index ea2d317..0000000
--- a/examples/addition.asm
+++ /dev/null
@@ -1,9 +0,0 @@
-; 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