You are free to name DEFINE constants as you like, but it is adviceable to name them
prefixed with "_" character in case same names appear anywhere else in the program
inside other strings. Currently, parser does not differentiate between constants for whole
words or substrings inside strings.
DEFINE constants must be named with length of at least 3 characters:
You are free to name DEFINE constants as you like, but it is adviceable to name them prefixed with "_" character in case same names appear anywhere else in the program inside other strings. Currently, parser does not differentiate between constants for whole words or substrings inside strings.
DEFINE constants must be named with length of at least 3 characters:
Proper syntax: DEFINE Cls="PUT(125)" DEFINE Black="Poke(710,0)" DEFINE max="3" DEFINE Pre="PUTD(6,"
Wrong syntax: DEFINE P="PUTD(6," DEFINE Pr="PUTD(6,"
DEFINE constant value definition must start and end with '"' character on the same line
Proper syntax: DEFINE GETTEMPS="[$68 $85 $D3 $A2 $00 $68 $95 $80 $68 $95 $A0 $68 $95 $A8 $68 $95 $C0 $E8 $E0 $08 $D0 $EF]"
Wrong syntax: DEFINE GETTEMPS="[$68 $85 $D3 $A2 $00 $68 $95 $80 $68 $95 $A0 $68 $95 $A8 $68 $95 $C0 $E8 $E0 $08 $D0 $EF]"