Activate User Defined Character Set
ESC %
Data Structure
ASCII ESC "%" SOH activate user defined character set in RAM
hex. 1B 25 01
dec. 27 37 1
ASCII ESC "%" NUL activate normal character set in ROM or Font Card
hex. 1B 25 00
dec. 27 37 0
Example
Example 30 LPRINT "[ \ ] ‘ { | } ~"
40 REM Copy ROM CG into Download CG
50 LPRINT CHR$(27);":";CHR$(0);CHR$(0);CHR$(0);
60 REM Select Download CG
70 LPRINT CHR$(27);"%";CHR$(1);
80 LPRINT "[ \ ] ‘ { | } ~"
90 END
Download Character Generator
79