void njPrintB( loc, val, digit )
Int loc
Uint32 val
Int digit
loc 表示位置 val 値 digit 出力桁数
なし
指定した値を画面上に2進数として表示します。
10,10に値100を2進数で10桁で出力する njPrintB(NJM_LOCATION(10,10),100,10);
表示位置はNJM_LOCATION(x, y)で指定します。x, yの値は文字列の行と列です。 値が出力桁数より大きいとき出力桁数以降の値が出力されます。
njPrintColor() デバッグ用文字色の指定 njPrintC() 文字列をデバック用に表示 njPrintD() 10進数でデバッグ用文字列を表示 njPrintH() 16進数でデバッグ用文字を表示 njPrintF() 浮動小数点でデバッグ用文字を表示 njPrint() デバッグ用文字の表示(printf互換) njInitPrint() デバッグ用文字の初期化 njExitPrint() デバッグ用文字使用の終了