mirror of
https://github.com/gb-mobile/pokecrystal-mobile-eng.git
synced 2026-04-24 15:26:53 -05:00
123 lines
3.0 KiB
NASM
123 lines
3.0 KiB
NASM
if DEF(_CRYSTAL_AU) ; AU build
|
|
Zipcode_CharPool_Formats:
|
|
dw Zipcode_CharPools_Format0
|
|
;________________________________
|
|
Zipcode_CharPools_Format0: ; 0-9 0-9 0-9 0-9
|
|
db CHARPOOL_0_TO_9
|
|
db CHARPOOL_0_TO_9
|
|
db CHARPOOL_0_TO_9
|
|
db CHARPOOL_0_TO_9
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
elif DEF(_CRYSTAL_EU) ; EU build
|
|
Zipcode_CharPool_Formats:
|
|
dw Zipcode_CharPools_Format0
|
|
dw Zipcode_CharPools_Format1
|
|
dw Zipcode_CharPools_Format2
|
|
dw Zipcode_CharPools_Format3
|
|
dw Zipcode_CharPools_Format4
|
|
dw Zipcode_CharPools_Format5
|
|
dw Zipcode_CharPools_Format6
|
|
dw Zipcode_CharPools_Format7
|
|
dw Zipcode_CharPools_Format8
|
|
dw Zipcode_CharPools_Format9
|
|
dw Zipcode_CharPools_Format10
|
|
dw Zipcode_CharPools_Format11
|
|
dw Zipcode_CharPools_Format12
|
|
;________________________________
|
|
Zipcode_CharPools_Format0: ; - - -
|
|
db CHARPOOL_DASH
|
|
db CHARPOOL_DASH
|
|
db CHARPOOL_DASH
|
|
|
|
Zipcode_CharPools_Format9: ; A-Z A-Z A-Z 0-9 0-9
|
|
db CHARPOOL_A_TO_Z
|
|
db CHARPOOL_A_TO_Z
|
|
db CHARPOOL_A_TO_Z
|
|
Zipcode_CharPools_Format5: ; 0-9 0-9 0-9 0-9 0-9 0-9 0-9
|
|
db CHARPOOL_0_TO_9
|
|
Zipcode_CharPools_Format4: ; 0-9 0-9 0-9 0-9 0-9 0-9
|
|
db CHARPOOL_0_TO_9
|
|
Zipcode_CharPools_Format3: ; 0-9 0-9 0-9 0-9 0-9
|
|
db CHARPOOL_0_TO_9
|
|
Zipcode_CharPools_Format6: ; 0-9 0-9 0-9 0-9 A-Z A-Z
|
|
Zipcode_CharPools_Format2: ; 0-9 0-9 0-9 0-9
|
|
db CHARPOOL_0_TO_9
|
|
Zipcode_CharPools_Format1: ; 0-9 0-9 0-9
|
|
db CHARPOOL_0_TO_9
|
|
db CHARPOOL_0_TO_9
|
|
db CHARPOOL_0_TO_9
|
|
db CHARPOOL_A_TO_Z
|
|
Zipcode_CharPools_Format7: ; A-Z 0-9 0-Z 0-Z 0-Z 0-Z 0-Z
|
|
db CHARPOOL_A_TO_Z
|
|
db CHARPOOL_0_TO_9
|
|
db CHARPOOL_A_TO_9
|
|
db CHARPOOL_A_TO_9
|
|
db CHARPOOL_A_TO_9
|
|
db CHARPOOL_A_TO_9
|
|
db CHARPOOL_A_TO_9
|
|
|
|
Zipcode_CharPools_Format8: ; A-Z 0-Z 0-Z 0-Z 0-Z Blank+A-Z Blank+A-Z
|
|
db CHARPOOL_A_TO_Z
|
|
db CHARPOOL_A_TO_9
|
|
db CHARPOOL_A_TO_9
|
|
db CHARPOOL_A_TO_9
|
|
db CHARPOOL_A_TO_9
|
|
db CHARPOOL_BLANK_A_TO_Z
|
|
db CHARPOOL_BLANK_A_TO_Z
|
|
|
|
Zipcode_CharPools_Format10: ; L V 0-9 0-9 0-9 0-9
|
|
db CHARPOOL_L
|
|
db CHARPOOL_V
|
|
db CHARPOOL_0_TO_9
|
|
db CHARPOOL_0_TO_9
|
|
db CHARPOOL_0_TO_9
|
|
db CHARPOOL_0_TO_9
|
|
|
|
Zipcode_CharPools_Format11: ; M D 0-9 0-9 0-9 0-9
|
|
db CHARPOOL_M
|
|
db CHARPOOL_D
|
|
db CHARPOOL_0_TO_9
|
|
db CHARPOOL_0_TO_9
|
|
db CHARPOOL_0_TO_9
|
|
db CHARPOOL_0_TO_9
|
|
|
|
Zipcode_CharPools_Format12: ; S I 0-9 0-9 0-9 0-9
|
|
db CHARPOOL_S
|
|
db CHARPOOL_I
|
|
db CHARPOOL_0_TO_9
|
|
db CHARPOOL_0_TO_9
|
|
db CHARPOOL_0_TO_9
|
|
db CHARPOOL_0_TO_9
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
else ; US build
|
|
Zipcode_CharPool_Formats:
|
|
dw Zipcode_CharPools_Format0
|
|
dw Zipcode_CharPools_Format1
|
|
;________________________________
|
|
Zipcode_CharPools_Format1: ; A-Z 0-9 A-Z 0-9 A-Z 0-9
|
|
db CHARPOOL_A_TO_Z
|
|
db CHARPOOL_0_TO_9
|
|
db CHARPOOL_A_TO_Z
|
|
db CHARPOOL_0_TO_9
|
|
db CHARPOOL_A_TO_Z
|
|
Zipcode_CharPools_Format0: ; 0-9 0-9 0-9 0-9 0-9
|
|
db CHARPOOL_0_TO_9
|
|
db CHARPOOL_0_TO_9
|
|
db CHARPOOL_0_TO_9
|
|
db CHARPOOL_0_TO_9
|
|
db CHARPOOL_0_TO_9
|
|
endc |