BBC Micro C library
|
Misc support functions. More...
Go to the source code of this file.
Functions | |
void | putstring (const char *s) |
void | puth (uint8_t n) |
void | puthtab (uint8_t x, uint8_t y, uint8_t n) |
void | putd (int32_t d) |
void | putdtab (uint8_t x, uint8_t y, int32_t d) |
char * | dtos (int32_t d) |
Misc support functions.
Misc support functions including number output
char* dtos | ( | int32_t | d | ) |
Convert a number to a string
d number
void putd | ( | int32_t | d | ) |
output a 32bit signed decimal number
d | number |
output a 32bit signed decimal number
x | text coordinate |
y | text coordinate |
d | number |
void puth | ( | uint8_t | n | ) |
output an 8bit hex number
n | number |
output an 8bit hex number at a particular text coordinate
x | text coordinate |
y | text coordinate |
n | number |
void putstring | ( | const char * | s | ) |
Output a zero terminated string without a newline char
s | string |