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