mirror of
https://github.com/pret/pokegold.git
synced 2026-05-20 02:38:23 -05:00
12 lines
176 B
NASM
12 lines
176 B
NASM
trainerclass: MACRO
|
|
enum \1
|
|
const_value = 1
|
|
ENDM
|
|
|
|
trainer: MACRO
|
|
; flag, group, id, seen text, win text, lost text, talk-again text
|
|
dw \1
|
|
db \2, \3
|
|
dw \4, \5, \6, \7
|
|
ENDM
|