MACRO CHAR x IF x = '`' EQUB 39 EOR RE ELSE EQUB x EOR RE ENDIF ENDMACROName: CHAR [Show more] Type: Macro Category: Text Summary: Macro definition for characters 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 CHAR * QQ18_DE uses CHAR * QQ18_FR uses CHAR
The following macro is used when building the recursive token table: CHAR 'x' Insert ASCII character "x" To include an apostrophe, use a backtick character, as in CHAR '`'.
Arguments: 'x' The character to insert into the table
[X]
Configuration variable RE = $3E
The obfuscation byte used to hide the recursive tokens table from crackers viewing the binary code
[X]