String I/O type stuff. More...
Go to the source code of this file.
Functions | |
void | setPenRow (char row) __naked __z88dk_fastcall __preserves_regs(bc |
set the row that is currently selectd | |
void | hexdump (char v) __naked |
print the hex of a char to the screen | |
void | doubleHexdump (int v) __naked __z88dk_fastcall |
Prints a 16-bit int to the screen. | |
Variables | |
void | de |
String I/O type stuff.
This is for printing c strings, it is not fast, but shouldn't be too large. Feel free not to use it if you need more space, although don't expect to use any other io type stuff
void doubleHexdump | ( | int | v | ) |
Prints a 16-bit int to the screen.
[v] | Int to be printed |
Basicly just calls hexdump() twice.
void hexdump | ( | char | v | ) |
print the hex of a char to the screen
[v] | Char to be printed This function is great for debuging but not so good for games. Should be quite fast. |
void setPenRow | ( | char | row | ) |
set the row that is currently selectd
[row] | char to move the pen to See https://wikiti.brandonw.net/index.php?title=83Plus:RAM:86D8 |