/** * TA alphatronic PC BASIC tokens determined by loading and listing the loaded program. * (Microsoft ROM BASIC Ver 5.11B) * * TODO: Are there 2-byte tokens? * * 0x20 - 0x7E ASCII with following exceptions: * * 0x40 @ -> § * 0x5B [ -> Ä * 0x5C \ -> Ö * 0x5D ] -> Ü * 0x7B { -> ä * 0x7C | -> ö * 0x7D } -> ü * 0x7E ~ -> ß * * Weirdo-tokens are commented-out * * TODO: There are still a lot of tokens missing. Some are identical with MSX tokens, some not. */ export declare const tokens: (string | number)[][];