How can I see this debug message in this way any idea anyone?

void SysWriteDebugConsole(const char* s) {
  asm("mov r0, #0x04\n"  // SYS_WRITE0
      "mov r1, %[str]\n"
      "bkpt #0xAB\n"
      :
      : [str] "r"(s)
      : "r0", "r1");
}
Was this page helpful?