#include <nitro/os.h>
void OS_PutString( const char* str );
This function outputs a character string.
This function is used for debugging. It will not output in the ROM version (FINALROM) library.
Example:
OS_PutString( "test message\n" );
str |
Display character string |
None
This function is actually a function pointer like the following:
void (*OS_PutString)( const char* str );
11/25/2004 Added Internal Operation
12/01/2003 Initial version