MACRO TOKN n IF n >= 0 AND n <= 95 t = n + 160 ELIF n >= 128 t = n - 114 ELSE t = n ENDIF EQUB t EOR VE ENDMACROName: TOKN [Show more] Type: Macro Category: Text Summary: Macro definition for standard tokens in the extended token table Deep dive: Printing text tokensContext: See this macro in context in the source code References: This macro is used as follows: * TKN1 uses TOKN
The following macro is used when building the recursive token table: TOKN n Insert recursive token [n] * Tokens 0-95 get stored as n + 160 * Tokens 128-145 get stored as n - 114 * Tokens 96-127 get stored as n
Arguments: n The number of the recursive token to insert into the table, in the range 0 to 145
[X]
Configuration variable VE = 0
The obfuscation byte used to hide the extended tokens table from crackers viewing the binary code, which is zero in Elite-A as the token table is not obfuscated