MACRO RTOK n IF n >= 0 AND n <= 95 t = n + 160 ELIF n >= 128 t = n - 114 ELSE t = n ENDIF EQUB t EOR RE ENDMACROName: RTOK [Show more] Type: Macro Category: Text Summary: Macro definition for recursive tokens in the recursive token table Deep dive: Printing text tokensContext: See this macro in context in the source code References: This macro is used as follows: * QQ18 uses RTOK * QQ18_DE uses RTOK * QQ18_FR uses RTOK
The following macro is used when building the recursive token table: RTOK 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 RE = $3E
The obfuscation byte used to hide the recursive tokens table from crackers viewing the binary code