LoadFont |
Previous Next |
LoadFont [<FontLabel>], [<TileCount>], [<Index>]
|
Part
|
Description
|
<FontLabel>
|
Optional. This is the line label where the user created font data
resides. If omitted, the default font will be loaded.
|
<TileCount>
|
Optional. How many characters are to be loaded. If omitted, a
default value of 256 will be used.
|
<Index>
|
Optional. Sets the location in VRAM to load the font. If omitted, a
default value of 0 will be used.
|
LoadFont ,256,100 ' Load the default font starting at VRAM location 100
DrawTile 165,1,1 ' Draw "A" to the screen
|