pokecrystal-board/home/rtc.asm

25 lines
318 B
NASM
Raw Normal View History

RTC:: ; 46f
; update time and time-sensitive palettes
; rtc enabled?
2015-11-25 07:26:30 -08:00
ld a, [wSpriteUpdatesEnabled]
cp 0
ret z
call UpdateTime
; obj update on?
2018-01-23 14:39:09 -08:00
ld a, [wVramState]
bit 0, a ; obj update
ret z
TimeOfDayPals:: ; 47e
2017-12-24 09:47:30 -08:00
callfar _TimeOfDayPals
ret
; 485
UpdateTimePals:: ; 485
2017-12-24 09:47:30 -08:00
callfar _UpdateTimePals
ret
; 48c