diff options
author | Astatin <[email protected]> | 2024-12-16 15:39:46 +0900 |
---|---|---|
committer | Astatin <[email protected]> | 2024-12-16 15:40:04 +0900 |
commit | e4c337519fb9842de5eb12e5975f50efa02784d0 (patch) | |
tree | 78e68e246fc7fd93df3e92225428180835ea296b | |
parent | 512ed00fd4c9eea0425b89ff45d98562135a166b (diff) |
Remove garbage in examples
-rw-r--r-- | .gitignore | 2 | ||||
-rw-r--r-- | examples/\ | 27 | ||||
-rw-r--r-- | examples/minimal.rom | bin | 363 -> 0 bytes | |||
-rw-r--r-- | examples/zoom.rom | bin | 768 -> 0 bytes | |||
-rw-r--r-- | examples/zoom.rom.sav | bin | 32768 -> 0 bytes |
5 files changed, 2 insertions, 27 deletions
@@ -1 +1,3 @@ gameboy-asm +examples/*.rom +examples/*.rom.sav diff --git a/examples/\ b/examples/\ deleted file mode 100644 index d6b549e..0000000 --- a/examples/\ +++ /dev/null @@ -1,27 +0,0 @@ -.PADTO 0x0100 -Entry: - JP =Start - -.PADTO 0x0104 -Nintendo_Logo: ; The Nintendo logo must be stored in bytes 0x104-133 - .DB $CE,$ED,$66,$66,$CC,$0D,$00,$0B,$03,$73,$00,$83,$00,$0C,$00,$0D - .DB $00,$08,$11,$1F,$88,$89,$00,$0E,$DC,$CC,$6E,$E6,$DD,$DD,$D9,$99 - .DB $BB,$BB,$67,$63,$6E,$0E,$EC,$CC,$DD,$DC,$99,$9F,$BB,$B9,$33,$3E - -.PADTO 0x0134 -Checksum: ; The bytes 0x134-0x14d need to add up to 0xe7 (= 0xff - 0x19) - .DB $00,$00,$00,$00,$00,$00,$00,$00,$00,$00,$00,$00,$00,$00,$00,$00 - .DB $00,$00,$00,$00,$00,$00,$00,$00,$00,$e7 - -Start: - LD HL, $8000 - VRAM_Clearing_Loop: - LD A, $00 - LD (HL+), A - LD A, H - CP $A0 - JR NZ, =VRAM_Clearing_Loop - - Lock: - JR =Lock - diff --git a/examples/minimal.rom b/examples/minimal.rom Binary files differdeleted file mode 100644 index 271c355..0000000 --- a/examples/minimal.rom +++ /dev/null diff --git a/examples/zoom.rom b/examples/zoom.rom Binary files differdeleted file mode 100644 index f6b1239..0000000 --- a/examples/zoom.rom +++ /dev/null diff --git a/examples/zoom.rom.sav b/examples/zoom.rom.sav Binary files differdeleted file mode 100644 index 12f3be4..0000000 --- a/examples/zoom.rom.sav +++ /dev/null |