mirror of
https://github.com/pret/pokered.git
synced 2026-05-07 13:53:15 -05:00
16 lines
241 B
NASM
16 lines
241 B
NASM
; see constants/player_constants.asm
|
|
|
|
DefaultNamesPlayer:
|
|
db "NEW NAME"
|
|
FOR n, 1, NUM_PLAYER_NAMES + 1
|
|
next #PLAYERNAME{d:n}
|
|
ENDR
|
|
db "@"
|
|
|
|
DefaultNamesRival:
|
|
db "NEW NAME"
|
|
FOR n, 1, NUM_PLAYER_NAMES + 1
|
|
next #RIVALNAME{d:n}
|
|
ENDR
|
|
db "@"
|