mirror of
https://github.com/pret/pokered.git
synced 2026-05-07 13:53:15 -05:00
18 lines
375 B
NASM
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
|