summaryrefslogtreecommitdiff
path: root/home/rtc.asm
blob: 651a7b6aa1dd2a7cfa0e91b875b328253991a6cc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
include "constants.asm"

; if DEBUG
SECTION "home/rtc.asm", ROM0
; else
; SECTION "Time Of Day Palettes", ROM0 [$02EF]
; endc

UpdateTimeOfDayPalettes: ; 32b (0:032b)
	ld a, [wVramState]
	bit 0, a
	ret z
TimeOfDayPals::
	callab _TimeOfDayPals ; Func_8c2e3
	ret

UpdateTimePals:: ; 33a
	callab _UpdateTimePals ; Func_8c335
	ret