b main = to set a breakpoint in function main (関数 main にブレークポイントを設定) r = to run the program (プログラムを実行) c = to continue after a break point (ブレークポイントの後続行) l = to see a listing of the program (at the current point) (現在のポイントでプログラムのリストを表示) n = to step one line (stepping over function calls) (関数コールをステップオーバー、1 行ステップ) s = to step one line (stepping into function calls) (関数コールにステップ、1 行ステップ) info reg = to see the values of registers (レジスタの値を表示) info target = to see the number of instructions executed, and the number of cycles (実行した命令数とサイクル数を表示) p xyz = to print the value of data xyz (データ xyz の値を出力)