mirror of
https://github.com/pret/pokeyellow.git
synced 2026-05-09 12:22:04 -05:00
Attempt to make yellow buildable, part 3
This commit is contained in:
parent
1d63499fa7
commit
d42e9f5b72
8
home.asm
8
home.asm
|
|
@ -21,7 +21,7 @@ SECTION "rst 38", ROM0 [$38]
|
|||
SECTION "vblank", ROM0 [$40]
|
||||
jp VBlank
|
||||
SECTION "hblank", ROM0 [$48]
|
||||
jp HBlank
|
||||
jp LCDC
|
||||
SECTION "timer", ROM0 [$50]
|
||||
jp Timer
|
||||
SECTION "serial", ROM0 [$58]
|
||||
|
|
@ -718,7 +718,7 @@ PrintBCDNumber:: ; 13ad (0:13ad)
|
|||
jr z,.loop
|
||||
bit 7,b
|
||||
jr nz,.loop
|
||||
ld [hl],"¥"
|
||||
ld [hl], "¥"
|
||||
inc hl
|
||||
.loop
|
||||
ld a,[de]
|
||||
|
|
@ -738,7 +738,7 @@ PrintBCDNumber:: ; 13ad (0:13ad)
|
|||
.skipRightAlignmentAdjustment
|
||||
bit 5,b
|
||||
jr z,.skipCurrencySymbol
|
||||
ld [hl],"¥"
|
||||
ld [hl], "¥"
|
||||
inc hl
|
||||
.skipCurrencySymbol
|
||||
ld [hl],"0"
|
||||
|
|
@ -757,7 +757,7 @@ PrintBCDDigit:: ; 13e4 (0:13e4)
|
|||
; if bit 7 is set, then no numbers have been printed yet
|
||||
bit 5,b ; print the currency symbol?
|
||||
jr z,.skipCurrencySymbol
|
||||
ld [hl],"¥"
|
||||
ld [hl], "¥"
|
||||
inc hl
|
||||
res 5,b
|
||||
.skipCurrencySymbol
|
||||
|
|
|
|||
12
text.asm
12
text.asm
|
|
@ -2089,11 +2089,7 @@ _ColosseumVersionText::
|
|||
prompt
|
||||
|
||||
_Char00Text::
|
||||
<<<<<<< HEAD
|
||||
TX_NUM hSpriteIndexOrTextID,1,2
|
||||
=======
|
||||
TX_NUM $FF8C,1,2
|
||||
>>>>>>> 6bdf0c5... Remove (incorrect) address comments
|
||||
text " error."
|
||||
done
|
||||
|
||||
|
|
@ -2493,19 +2489,11 @@ _DreamWasEatenText::
|
|||
line "dream was eaten!"
|
||||
prompt
|
||||
|
||||
<<<<<<< HEAD
|
||||
_TradeCenterText1::
|
||||
text "!"
|
||||
done
|
||||
|
||||
_ColosseumText1::
|
||||
=======
|
||||
_BattleCenterMText1::
|
||||
text "!"
|
||||
done
|
||||
|
||||
_TradeCenterMText1::
|
||||
>>>>>>> 6bdf0c5... Remove (incorrect) address comments
|
||||
text "!"
|
||||
done
|
||||
|
||||
|
|
|
|||
|
|
@ -1,5 +1,4 @@
|
|||
<<<<<<< HEAD
|
||||
INCLUDE "yellow.asm"
|
||||
INCLUDE "charmap.asm"
|
||||
INCLUDE "constants.asm"
|
||||
|
||||
NPC_SPRITES_1 EQU $4
|
||||
|
|
@ -1069,8 +1068,3 @@ INCLUDE "engine/bank3f/main.asm"
|
|||
;BeachHouse_Block:
|
||||
; INCBIN "gfx/blocksets/beachhouse.bst"
|
||||
;ENDC
|
||||
|
||||
=======
|
||||
INCLUDE "charmap.asm"
|
||||
INCLUDE "main.asm"
|
||||
>>>>>>> e4bb6ce... Build only Yellow
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user