pokecrystal-board/home/init.asm

211 lines
2.7 KiB
NASM
Raw Normal View History

2018-06-24 07:09:41 -07:00
Reset::
2013-08-20 00:26:37 -07:00
di
call InitSound
2013-08-20 00:26:37 -07:00
xor a
ldh [hMapAnims], a
2013-08-20 00:26:37 -07:00
call ClearPalettes
xor a
ldh [rIF], a
2019-05-05 09:14:46 -07:00
ld a, 1 << VBLANK
ldh [rIE], a
2013-08-20 00:26:37 -07:00
ei
ld hl, wJoypadDisable
set JOYPAD_DISABLE_SGB_TRANSFER_F, [hl]
2013-08-20 00:26:37 -07:00
ld c, 32
call DelayFrames
jr Init
2018-06-24 07:09:41 -07:00
_Start::
2013-08-20 00:26:37 -07:00
cp $11
jr z, .cgb
2020-06-16 12:49:32 -07:00
xor a ; FALSE
jr .load
2013-08-20 00:26:37 -07:00
.cgb
2020-06-16 12:49:32 -07:00
ld a, TRUE
2013-08-20 00:26:37 -07:00
.load
ldh [hCGB], a
2020-06-16 12:49:32 -07:00
ld a, TRUE
ldh [hSystemBooted], a
2013-08-20 00:26:37 -07:00
2018-06-24 07:09:41 -07:00
Init::
2013-08-20 00:26:37 -07:00
di
xor a
ldh [rIF], a
ldh [rIE], a
ldh [rRP], a
ldh [rSCX], a
ldh [rSCY], a
ldh [rSB], a
ldh [rSC], a
ldh [rWX], a
ldh [rWY], a
ldh [rBGP], a
ldh [rOBP0], a
ldh [rOBP1], a
ldh [rTMA], a
ldh [rTAC], a
ld [wBetaTitleSequenceOpeningType], a
2013-08-20 00:26:37 -07:00
ld a, %100 ; Start timer at 4096Hz
ldh [rTAC], a
2013-08-20 00:26:37 -07:00
.wait
ldh a, [rLY]
2017-12-29 09:53:21 -08:00
cp LY_VBLANK + 1
2013-08-20 00:26:37 -07:00
jr nz, .wait
xor a
ldh [rLCDC], a
2013-08-20 00:26:37 -07:00
; Clear WRAM bank 0
2024-01-03 07:58:53 -08:00
ld hl, STARTOF(WRAM0)
ld bc, SIZEOF(WRAM0)
.ByteFill:
2013-08-20 00:26:37 -07:00
ld [hl], 0
inc hl
dec bc
ld a, b
or c
jr nz, .ByteFill
2013-08-20 00:26:37 -07:00
2020-06-16 12:49:32 -07:00
ld sp, wStackTop
2013-08-20 00:26:37 -07:00
; Clear HRAM
ldh a, [hCGB]
2013-08-20 00:26:37 -07:00
push af
ldh a, [hSystemBooted]
2013-08-20 00:26:37 -07:00
push af
xor a
2024-01-03 07:58:53 -08:00
ld hl, STARTOF(HRAM)
ld bc, SIZEOF(HRAM)
2013-08-20 00:26:37 -07:00
call ByteFill
pop af
ldh [hSystemBooted], a
2013-08-20 00:26:37 -07:00
pop af
ldh [hCGB], a
2013-08-20 00:26:37 -07:00
call ClearWRAM
2018-01-17 22:25:19 -08:00
ld a, 1
ldh [rSVBK], a
2013-08-20 00:26:37 -07:00
call ClearVRAM
call ClearSprites
call ClearsScratch
2013-08-20 00:26:37 -07:00
2020-06-16 12:49:32 -07:00
ld a, BANK(WriteOAMDMACodeToHRAM) ; aka BANK(GameInit)
2013-08-20 00:26:37 -07:00
rst Bankswitch
2018-01-30 11:47:14 -08:00
call WriteOAMDMACodeToHRAM
2013-08-20 00:26:37 -07:00
xor a
ldh [hMapAnims], a
ldh [hSCX], a
ldh [hSCY], a
ldh [rJOYP], a
2013-08-20 00:26:37 -07:00
2023-08-27 07:27:11 -07:00
ld a, 1 << rSTAT_INT_HBLANK
ldh [rSTAT], a
2013-08-20 00:26:37 -07:00
ld a, $90
ldh [hWY], a
ldh [rWY], a
2013-08-20 00:26:37 -07:00
ld a, 7
ldh [hWX], a
ldh [rWX], a
2013-08-20 00:26:37 -07:00
farcall InitCGBPals
2017-12-29 10:22:33 -08:00
ld a, LCDC_DEFAULT ; %11100011
2013-08-20 00:26:37 -07:00
; LCD on
; Win tilemap 1
; Win on
; BG/Win tiledata 0
; BG Tilemap 0
; OBJ 8x8
; OBJ on
; BG on
ldh [rLCDC], a
2013-08-20 00:26:37 -07:00
ld a, CONNECTION_NOT_ESTABLISHED
ldh [hSerialConnectionStatus], a
2013-08-20 00:26:37 -07:00
2017-12-28 04:32:33 -08:00
ld a, HIGH(vBGMap1)
ldh [hBGMapAddress + 1], a
2017-12-28 04:32:33 -08:00
xor a ; LOW(vBGMap1)
ldh [hBGMapAddress], a
2013-08-20 00:26:37 -07:00
2020-06-16 12:49:32 -07:00
xor a ; SRAM_DISABLE
ld [MBC5SRamEnable], a
2013-08-20 00:26:37 -07:00
ldh a, [hCGB]
2013-08-20 00:26:37 -07:00
and a
2016-05-05 12:07:37 -07:00
jr z, .no_double_speed
2013-09-08 00:12:48 -07:00
call NormalSpeed
2016-05-05 12:07:37 -07:00
.no_double_speed
2013-08-20 00:26:37 -07:00
xor a
ldh [rIF], a
ldh [hLCDStatIntRequired], a
ld a, IE_DEFAULT_WO_LCD_STAT
ldh [rIE], a
2013-08-20 00:26:37 -07:00
ei
call DelayFrame
call InitSound
2013-08-20 00:26:37 -07:00
xor a
2014-05-21 13:21:46 -07:00
ld [wMapMusic], a
2013-08-20 00:26:37 -07:00
jp GameInit
2018-06-24 07:09:41 -07:00
ClearVRAM::
2013-08-20 00:26:37 -07:00
; Wipe VRAM banks 0 and 1
ld a, 1
ldh [rVBK], a
2013-08-20 00:26:37 -07:00
call .clear
2018-01-17 22:25:19 -08:00
xor a ; 0
ldh [rVBK], a
2013-08-20 00:26:37 -07:00
.clear
2024-01-03 07:58:53 -08:00
ld hl, STARTOF(VRAM)
ld bc, SIZEOF(VRAM)
2013-08-20 00:26:37 -07:00
xor a
call ByteFill
ret
2018-06-24 07:09:41 -07:00
ClearWRAM::
2013-08-20 00:26:37 -07:00
; Wipe swappable WRAM banks (1-7)
; Assumes CGB or AGB
2013-08-20 00:26:37 -07:00
ld a, 1
.bank_loop
2013-08-20 00:26:37 -07:00
push af
ldh [rSVBK], a
2013-08-20 00:26:37 -07:00
xor a
2024-01-03 07:58:53 -08:00
ld hl, STARTOF(WRAMX)
ld bc, SIZEOF(WRAMX)
2013-08-20 00:26:37 -07:00
call ByteFill
pop af
inc a
cp 8
jr c, .bank_loop
2013-08-20 00:26:37 -07:00
ret
2018-06-24 07:09:41 -07:00
ClearsScratch::
; Wipe the first 32 bytes of sScratch
ld a, BANK(sScratch)
call OpenSRAM
ld hl, sScratch
ld bc, $20
2013-08-20 00:26:37 -07:00
xor a
call ByteFill
call CloseSRAM
ret