Move all misc/ and unknown/ files to meaningful directories

This commit is contained in:
Remy Oukaour
2017-12-15 13:21:47 -05:00
parent ebf3bfb6b2
commit dc76bf804f
22 changed files with 293 additions and 292 deletions

44
mobile/news/news.asm Normal file
View File

@@ -0,0 +1,44 @@
; http://forums.glitchcity.info/index.php?topic=7509.msg206449#msg206449
db $cc, $6b, $1e ; XXX
Function1f4003: ; 1f4003
; XXX
ld a, $6
call GetSRAMBank
ld hl, .news_data
ld de, $a000
ld bc, $1000
call CopyBytes
call CloseSRAM
ret
.news_data
INCBIN "mobile/news/news_1.bin"
Function1f4dbe: ; 1f4dbe
; XXX
ld a, $6
call GetSRAMBank
ld hl, .news_data
ld de, $a000
ld bc, $1000
call CopyBytes
call CloseSRAM
ret
.news_data
INCBIN "mobile/news/news_2.bin"
Function1f5d9f: ; 1f5d9f
ld a, $6
call GetSRAMBank
ld hl, .news_data
ld de, $a000
ld bc, $1000
call CopyBytes
call CloseSRAM
ret
.news_data
INCBIN "mobile/news/news_3.bin"

BIN
mobile/news/news_1.bin Normal file

Binary file not shown.

BIN
mobile/news/news_2.bin Normal file

Binary file not shown.

BIN
mobile/news/news_3.bin Normal file

Binary file not shown.