mirror of
https://github.com/RPCSX/rpcsx.git
synced 2025-12-06 07:12:14 +01:00
16 lines
283 B
C++
16 lines
283 B
C++
|
|
#include "stdafx.h"
|
||
|
|
#include "Emu/System.h"
|
||
|
|
#include "Emu/Cell/ErrorCodes.h"
|
||
|
|
|
||
|
|
#include "sys_console.h"
|
||
|
|
|
||
|
|
|
||
|
|
LOG_CHANNEL(sys_console);
|
||
|
|
|
||
|
|
error_code sys_console_write(vm::cptr<char> buf, u32 len)
|
||
|
|
{
|
||
|
|
sys_console.todo("sys_console_write(buf=*0x%x, len=0x%x)", buf, len);
|
||
|
|
|
||
|
|
return CELL_OK;
|
||
|
|
}
|