diff --git a/roms/test.asm b/roms/test.asm new file mode 100644 index 0000000..fe4cdf2 --- /dev/null +++ b/roms/test.asm @@ -0,0 +1,11 @@ +SECTION "Header", ROM0[$100] +nop ; offset jump +jp EntryPoint ; entry point +ds $30, 0 ; nintendo logo +db "My Test ROM ", 0 ; title + +ds $150 - @, 0 + +EntryPoint: +xor a +halt \ No newline at end of file diff --git a/roms/test.gb b/roms/test.gb new file mode 100644 index 0000000..7da2205 Binary files /dev/null and b/roms/test.gb differ