OS_PutString

Syntax

#include <nitro/os.h>

void OS_PutString( const char* str );

(actually a function pointer)

Arguments

str Display string

Return Values

None.

Description

Outputs a string. This function is used for debugging. It will not be included in the final ROM version (FINALROM).

Example:
OS_PutString( "test message\n" );

Internal Operation

This function is actually a function pointer like the following:

void (*OS_PutString)( const char* str );

And it changes the display function depending on the operating environment.

See Also

OS_Printf

Revision History

2004/11/25 Added Internal Operation.
2003/12/01 Initial version.


CONFIDENTIAL