Return to previous page Return to menu Go to next page

  Title  
Function specifications
  Function  
Display text on debug screen
  Function Name  
DBG_Printf
No
6

 
format void DBG_Printf (const char * control, ...) Input control: Pointer to the character string indicating the format : ...: Argument list Output None Function value None Function Writes a character string on the debug screen. Same usage as printf (). Example sample () { DBG_Printf (“% s ¥ n”, “SEGA”); }

  Title  
Function specifications
  Function  

Key input processing with software keyboard
  Function Name  
DBG_GetKeyStr
No
7

 
format char * DBG_GetKeyStr (char * keyStr) Input keyStr: Pointer of the input key string return area. Output keyStr: Input key string data. Function value Pointer to the specified input key string return area Function Displays a software keyboard on the debug screen and imports a character string.
    -Keypad operation-           R: Move the key selection cursor to the right           L: Move the key selection cursor to the left           U: Move key selection cursor up           D: Move down the key selection cursor           B + R: Move the key window right           B + L: Move key window left           B + U: Move up the key window           B + D: Move down the key window           A: Enter the character at the key selection cursor position           C: Delete input character (backspace)           START: Input end (return)           X: Hide / show sprite screen           Y: Hide / show scroll (except normal 0) screen


Return to previous page Return to menu Go to next page