Specifications

169
*ANK: Alphanumeric and Katakana
Syntax:
Syntax 1 (Loading a user-defined font):
APLOAD characode,fontarrayname
Syntax 2 (Loading a user-defined cursor.):
APLOAD characode,cursorarrayname
Parameter:
characode
For user-defined font A numeric expression which returns a value
from 128 (80h) to 159 (9Fh).
For user-defined cursor A numeric expression which returns a value 0.
fontarrayname and cursorarrayname
An array integer variable name.
Description:
Loading a user-defined font
APLOAD loads a user-defined font data defined by fontarrayname to the user
font area specified by characode.
To display user-defined fonts loaded by the APLOAD, you use the PRINT state-
ment in the single-byte ANK mode. If you attempt to display an undefined charac-
ter code, a space character will appear.
The loaded user-defined fonts are effective during execution of the user program
which loaded those fonts and during execution of the successive user programs
chained by the
CHAIN statement.
ANK Pattern LOAD I/O statement
APLOAD
Loads a user-defined font in the single-byte ANK* mode
NOTE
Do not specify parentheses ( ) or subscripts which represent a general array
as shown below; doing so will result in a syntax error.
APLOAD &H80,cp%() error
APLOAD &H80,cp%(5) error