Copy ROM into RAM
ESC :
Data Structure
ASCII ESC ":" NUL <n> NUL copy ROM CG
hex. 1B 3A 00 <n> 00
dec. 27 58 0 <n> 0
Description
This Escape sequence copies the specified character set (see ESC k <n>) from ROM or
from the font module to RAM. There the individual characters can be altered by the user.
Example
10 REM Copy ROM CG into Download CG
20 LPRINT CHR$(27);":";CHR$(0);CHR$(0);CHR$(0);
30 REM Select Download CG
40 LPRINT CHR$(27);"%";CHR$(1);CHR$(0);
50 LPRINT "[ \ ] ‘ { | } ~"
60 END
Download Character Generator
75