summaryrefslogtreecommitdiff
path: root/roms
diff options
context:
space:
mode:
authorAndrew Opalach <andrew@akon.city> 2019-09-09 20:25:22 -0400
committerAndrew Opalach <andrew@akon.city> 2019-09-09 20:25:22 -0400
commit1ea493d0d11d19dd3777f3e2646bce19929f786a (patch)
tree902cd31cbce3f2b76d44e1cac3b597ef9c966ea1 /roms
downloadchip8-1ea493d0d11d19dd3777f3e2646bce19929f786a.tar.gz
chip8-1ea493d0d11d19dd3777f3e2646bce19929f786a.tar.bz2
chip8-1ea493d0d11d19dd3777f3e2646bce19929f786a.zip
initial commit
Diffstat (limited to 'roms')
-rw-r--r--roms/Breakout [Carmelo Cortez, 1979].ch8bin0 -> 232 bytes
-rw-r--r--roms/a.ch8bin0 -> 27 bytes
-rw-r--r--roms/e.asm22
-rw-r--r--roms/e.ch8bin0 -> 25 bytes
4 files changed, 22 insertions, 0 deletions
diff --git a/roms/Breakout [Carmelo Cortez, 1979].ch8 b/roms/Breakout [Carmelo Cortez, 1979].ch8
new file mode 100644
index 0000000..70b50db
--- /dev/null
+++ b/roms/Breakout [Carmelo Cortez, 1979].ch8
Binary files differ
diff --git a/roms/a.ch8 b/roms/a.ch8
new file mode 100644
index 0000000..f445d49
--- /dev/null
+++ b/roms/a.ch8
Binary files differ
diff --git a/roms/e.asm b/roms/e.asm
new file mode 100644
index 0000000..2dd3761
--- /dev/null
+++ b/roms/e.asm
@@ -0,0 +1,22 @@
+CLS
+
+LD V0, 0
+LD V1, 0
+LD V2, 0
+
+loop:
+
+LD F, V0
+LD I, esprite
+DRW V1, V2, 5
+ADD V1, 5
+ADD V2, 6
+
+JP loop
+
+esprite:
+db %11110000,
+ %10000000,
+ %11110000,
+ %10000000,
+ %11110000,
diff --git a/roms/e.ch8 b/roms/e.ch8
new file mode 100644
index 0000000..e890b81
--- /dev/null
+++ b/roms/e.ch8
Binary files differ