| 98 | } |
| 99 | |
| 100 | void console_putc(ppu_thread& ppu, char ch) |
| 101 | { |
| 102 | sysPrxForUser.trace("console_putc(ch=0x%x)", ch); |
| 103 | sys_tty_write(ppu, 0, vm::var<char>(ch), 1, vm::var<u32>{}); |
| 104 | } |
| 105 | |
| 106 | error_code console_write(ppu_thread& ppu, vm::ptr<char> data, u32 len) |
| 107 | { |
nothing calls this directly
no test coverage detected