pokered/data/player/names_list.asm
Rangi d79c578abd
Some checks failed
CI / build (push) Has been cancelled
Specify a max item length for list_start (#552)
2025-12-15 15:16:40 -05:00

18 lines
375 B
NASM

; see constants/player_constants.asm
DefaultNamesPlayerList:
db "NEW NAME@"
list_start PLAYER_NAME_LENGTH - 1
FOR n, 1, NUM_PLAYER_NAMES + 1
li #PLAYERNAME{d:n}
ENDR
assert_list_length NUM_PLAYER_NAMES
DefaultNamesRivalList:
db "NEW NAME@"
list_start PLAYER_NAME_LENGTH - 1
FOR n, 1, NUM_PLAYER_NAMES + 1
li #RIVALNAME{d:n}
ENDR
assert_list_length NUM_PLAYER_NAMES