mirror of
https://github.com/RPCSX/rpcsx.git
synced 2026-04-04 14:08:37 +00:00
Implement console_write and GetHomeDataExportPath
This commit is contained in:
parent
cd7fbae583
commit
ea376e7751
12 changed files with 173 additions and 112 deletions
|
|
@ -145,9 +145,12 @@ s32 console_putc()
|
|||
throw EXCEPTION("");
|
||||
}
|
||||
|
||||
s32 console_write()
|
||||
void console_write(vm::ptr<char> data, u32 len)
|
||||
{
|
||||
throw EXCEPTION("");
|
||||
sysPrxForUser.Warning("console_write(data=*0x%x, len=%d)", data, len);
|
||||
sysPrxForUser.Warning("*** data='%s'", data.get_ptr());
|
||||
|
||||
LOG_NOTICE(TTY, "%s", data.get_ptr());
|
||||
}
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue