mirror of
https://github.com/thornAvery/kep-hack.git
synced 2026-02-22 07:02:17 +13:00
Enumerate more constants
This commit is contained in:
parent
b96ef8d2d4
commit
340230e997
10 changed files with 885 additions and 860 deletions
|
|
@ -1,38 +1,40 @@
|
|||
; super game boy palettes
|
||||
PAL_ROUTE EQU $00
|
||||
PAL_PALLET EQU $01
|
||||
PAL_VIRIDIAN EQU $02
|
||||
PAL_PEWTER EQU $03
|
||||
PAL_CERULEAN EQU $04
|
||||
PAL_LAVENDER EQU $05
|
||||
PAL_VERMILION EQU $06
|
||||
PAL_CELADON EQU $07
|
||||
PAL_FUCHSIA EQU $08
|
||||
PAL_CINNABAR EQU $09
|
||||
PAL_INDIGO EQU $0A
|
||||
PAL_SAFFRON EQU $0B
|
||||
PAL_TOWNMAP EQU $0C
|
||||
PAL_LOGO1 EQU $0D
|
||||
PAL_LOGO2 EQU $0E
|
||||
;PAL_0F EQU $0F
|
||||
PAL_MEWMON EQU $10
|
||||
PAL_BLUEMON EQU $11
|
||||
PAL_REDMON EQU $12
|
||||
PAL_CYANMON EQU $13
|
||||
PAL_PURPLEMON EQU $14
|
||||
PAL_BROWNMON EQU $15
|
||||
PAL_GREENMON EQU $16
|
||||
PAL_PINKMON EQU $17
|
||||
PAL_YELLOWMON EQU $18
|
||||
PAL_GREYMON EQU $19
|
||||
PAL_SLOTS1 EQU $1A
|
||||
PAL_SLOTS2 EQU $1B
|
||||
PAL_SLOTS3 EQU $1C
|
||||
PAL_SLOTS4 EQU $1D
|
||||
PAL_BLACK EQU $1E
|
||||
PAL_GREENBAR EQU $1F
|
||||
PAL_YELLOWBAR EQU $20
|
||||
PAL_REDBAR EQU $21
|
||||
PAL_BADGE EQU $22
|
||||
PAL_CAVE EQU $23
|
||||
PAL_GAMEFREAK EQU $24
|
||||
const_value = 0
|
||||
|
||||
const PAL_ROUTE ; $00
|
||||
const PAL_PALLET ; $01
|
||||
const PAL_VIRIDIAN ; $02
|
||||
const PAL_PEWTER ; $03
|
||||
const PAL_CERULEAN ; $04
|
||||
const PAL_LAVENDER ; $05
|
||||
const PAL_VERMILION ; $06
|
||||
const PAL_CELADON ; $07
|
||||
const PAL_FUCHSIA ; $08
|
||||
const PAL_CINNABAR ; $09
|
||||
const PAL_INDIGO ; $0A
|
||||
const PAL_SAFFRON ; $0B
|
||||
const PAL_TOWNMAP ; $0C
|
||||
const PAL_LOGO1 ; $0D
|
||||
const PAL_LOGO2 ; $0E
|
||||
const PAL_0F ; $0F
|
||||
const PAL_MEWMON ; $10
|
||||
const PAL_BLUEMON ; $11
|
||||
const PAL_REDMON ; $12
|
||||
const PAL_CYANMON ; $13
|
||||
const PAL_PURPLEMON ; $14
|
||||
const PAL_BROWNMON ; $15
|
||||
const PAL_GREENMON ; $16
|
||||
const PAL_PINKMON ; $17
|
||||
const PAL_YELLOWMON ; $18
|
||||
const PAL_GREYMON ; $19
|
||||
const PAL_SLOTS1 ; $1A
|
||||
const PAL_SLOTS2 ; $1B
|
||||
const PAL_SLOTS3 ; $1C
|
||||
const PAL_SLOTS4 ; $1D
|
||||
const PAL_BLACK ; $1E
|
||||
const PAL_GREENBAR ; $1F
|
||||
const PAL_YELLOWBAR ; $20
|
||||
const PAL_REDBAR ; $21
|
||||
const PAL_BADGE ; $22
|
||||
const PAL_CAVE ; $23
|
||||
const PAL_GAMEFREAK ; $24
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue