|
muteki
|
Miscellaneous utility syscalls. More...
Go to the source code of this file.
Functions | |
| lcd_surface_t * | GetActiveVRamAddress (void) |
| Get the descriptor of the currently active LCD surface. | |
| bool | WarningBeep (void) |
| Play a beep using the built in piezo speaker. | |
| void | WriteComDebugMsg (char *format,...) SYS_IS_PRINTF(1 |
| Format and send a message to debug UART port. | |
Miscellaneous utility syscalls.
Contains syscalls that cannot be easily grouped with other syscalls.
|
extern |
Get the descriptor of the currently active LCD surface.
This is functionally equivalent to the following:
Requires -lkrnllib when dynamically linking with the shims.
0x20022
|
extern |
Play a beep using the built in piezo speaker.
This usually plays a 4000Hz tone for 10ms.
0x1009e| true | The operation was completed successfully. |
|
extern |
Format and send a message to debug UART port.
Supports all conversion specifiers Printf() and PrintfXY() supports. This internally calls an implementation of vsnprintf() to generate the final message.
vsnprintf() to save formatted message might also be device-specific. On BA742 this buffer is 0x800 bytes long, with 0x7ff bytes actually available to the formatted message. 0x102a1 | format | The format string. |
| ... | Any subsequent values. |