From 24c328db90627881d7c293e1ba481c6bd96e31da Mon Sep 17 00:00:00 2001
From: ryo <ryo@nopwd.lol>
Date: Mon, 30 Dec 2024 16:11:32 +0000
Subject: Initial commit

---
 demo/add.asm | 12 ++++++++++++
 1 file changed, 12 insertions(+)
 create mode 100644 demo/add.asm

(limited to 'demo/add.asm')

diff --git a/demo/add.asm b/demo/add.asm
new file mode 100644
index 0000000..1b11842
--- /dev/null
+++ b/demo/add.asm
@@ -0,0 +1,12 @@
+	ORG 30
+	LDA X I
+	ADD Y	/simple comment
+	STA S	/ another one
+	HLT
+
+	/ variables
+X,	HEX 1A
+Y,	DEC -23
+S,	DEC 0
+
+	END
-- 
cgit v1.2.3