Defines | |
#define | MINIFONTnibbles(src) (1548) |
The size of a MINIFONT in nibbles. | |
Functions | |
bool | isMINIFONT (SatAddr src) |
is object a Mini font (MINIFONT)? | |
SatAddr | MINIFONTitem (SatAddr src, int ch) |
Return the Saturn address of a character's MINIFONT entry. | |
int | MINIFONTgetId (SatAddr src) |
Get the minifont ID number. | |
bool | MINIFONTsetId (SatAddr src, int id) |
Set the MINIFONT id. | |
SatAddr | makeMINIFONT () |
create a new MINIFONT object in TEMPOB. The contents of the minifont are undefined |
#define MINIFONTnibbles | ( | src | ) | (1548) |
The size of a MINIFONT in nibbles.
src | Saturn address of the MINIFONT. Although unnecessary, the parameter is included for consistency |
bool isMINIFONT | ( | SatAddr | src | ) |
is object a Mini font (MINIFONT)?
src | Saturn address of an object |
SatAddr makeMINIFONT | ( | ) |
create a new MINIFONT object in TEMPOB. The contents of the minifont are undefined
int MINIFONTgetId | ( | SatAddr | src | ) |
Get the minifont ID number.
src | The Saturn address of a minifont |
Return the Saturn address of a character's MINIFONT entry.
This returns the address of the 6-nibble minifont entry corresponding to ASCII char ch. Once you have the entry, you can read or change it with sat_peek() and sat_poke()
src | The Saturn address of the MINIFONT | |
ch | The ASCII character |
bool MINIFONTsetId | ( | SatAddr | src, | |
int | id | |||
) |
Set the MINIFONT id.
src | The Saturn address of a minifont | |
id | The new ID number. id must be between 0 and 0xff |