Skip to content

Commit

Permalink
Identify remaining Mystery Gift labels and constants
Browse files Browse the repository at this point in the history
  • Loading branch information
Rangi42 committed Oct 28, 2020
1 parent 2738858 commit 446f184
Show file tree
Hide file tree
Showing 11 changed files with 671 additions and 523 deletions.
11 changes: 7 additions & 4 deletions constants/hardware_constants.asm
Original file line number Diff line number Diff line change
Expand Up @@ -71,10 +71,10 @@ rTIMA EQU $ff05 ; Timer counter (R/W)
rTMA EQU $ff06 ; Timer Modulo (R/W)
rTAC EQU $ff07 ; Timer Control (R/W)
rTAC_ON EQU 2
rTAC_4096_HZ EQU 0
rTAC_262144_HZ EQU 1
rTAC_65536_HZ EQU 2
rTAC_16384_HZ EQU 3
rTAC_4096_HZ EQU %00
rTAC_262144_HZ EQU %01
rTAC_65536_HZ EQU %10
rTAC_16384_HZ EQU %11
rIF EQU $ff0f ; Interrupt Flag (R/W)
rNR10 EQU $ff10 ; Channel 1 Sweep register (R/W)
rNR11 EQU $ff11 ; Channel 1 Sound length/Wave pattern duty (R/W)
Expand Down Expand Up @@ -147,6 +147,9 @@ rHDMA3 EQU $ff53 ; CGB Mode Only - New DMA Destination, High
rHDMA4 EQU $ff54 ; CGB Mode Only - New DMA Destination, Low
rHDMA5 EQU $ff55 ; CGB Mode Only - New DMA Length/Mode/Start
rRP EQU $ff56 ; CGB Mode Only - Infrared Communications Port
rRP_LED_ON EQU 0
rRP_RECEIVING EQU 1
rRP_ENABLE_READ_MASK EQU %11000000
rBGPI EQU $ff68 ; CGB Mode Only - Background Palette Index
rBGPI_AUTO_INCREMENT EQU 7 ; increment rBGPI after write to rBGPD
rBGPD EQU $ff69 ; CGB Mode Only - Background Palette Data
Expand Down
2 changes: 2 additions & 0 deletions constants/misc_constants.asm
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,8 @@ FEMALE EQU 1

; G/S version ID: 0 = Gold, 1 = Silver (used by checkver)
GS_VERSION EQU 0
; Pokémon Pikachu 2, a step counter / virtual pet device (used by Mystery Gift)
POKEMON_PIKACHU_2_VERSION EQU 3

; save file corruption check values
SAVE_CHECK_VALUE_1 EQU 99
Expand Down
2 changes: 2 additions & 0 deletions constants/serial_constants.asm
Original file line number Diff line number Diff line change
Expand Up @@ -30,3 +30,5 @@ SERIAL_NO_DATA_BYTE EQU $fe
SERIAL_PATCH_LIST_PART_TERMINATOR EQU $ff

SERIAL_PREAMBLE_LENGTH EQU 6

MAX_MYSTERY_GIFT_PARTNERS EQU 5
Loading

0 comments on commit 446f184

Please sign in to comment.