summaryrefslogtreecommitdiff
path: root/rom
diff options
context:
space:
mode:
Diffstat (limited to 'rom')
-rw-r--r--rom/test00.asm29
-rw-r--r--rom/test00.binbin0 -> 38 bytes
-rw-r--r--rom/test00.obin0 -> 196 bytes
3 files changed, 29 insertions, 0 deletions
diff --git a/rom/test00.asm b/rom/test00.asm
new file mode 100644
index 0000000..d96a4e8
--- /dev/null
+++ b/rom/test00.asm
@@ -0,0 +1,29 @@
+NOP
+LD HL, 0xEEEE
+LD A, 0xDE
+LD BC, 0xFFEE
+LD BC, test
+LD (BC), A
+LD BC, 0xFFFE
+INC BC
+INC BC
+LD B, 1
+DEC B
+DEC B
+RLCA
+RLCA
+RLCA
+ADD HL, BC
+LD BC, test2
+LD A, (BC)
+DEC BC
+DEC BC
+LD C, 0xFE
+INC C
+INC C
+
+test:
+db 0x00
+test2:
+db 0x01
+
diff --git a/rom/test00.bin b/rom/test00.bin
new file mode 100644
index 0000000..ae89993
--- /dev/null
+++ b/rom/test00.bin
Binary files differ
diff --git a/rom/test00.o b/rom/test00.o
new file mode 100644
index 0000000..90aa154
--- /dev/null
+++ b/rom/test00.o
Binary files differ