#include "stdafx.h" #include "sys_tty.h" namespace vm { using namespace ps3; } logs::channel sys_tty("sys_tty"); extern fs::file g_tty; error_code sys_tty_read(s32 ch, vm::ptr buf, u32 len, vm::ptr preadlen) { sys_tty.fatal("sys_tty_read(ch=%d, buf=*0x%x, len=%d, preadlen=*0x%x)", ch, buf, len, preadlen); // We currently do not support reading from the Console fmt::throw_exception("Unimplemented" HERE); } error_code sys_tty_write(s32 ch, vm::cptr buf, u32 len, vm::ptr pwritelen) { sys_tty.notice("sys_tty_write(ch=%d, buf=*0x%x, len=%d, pwritelen=*0x%x)", ch, buf, len, pwritelen); if (ch > 15) { return CELL_EINVAL; } const u32 written_len = static_cast(len) > 0 ? len : 0; if (written_len > 0 && g_tty) { g_tty.write(buf.get_ptr(), len); } if (!pwritelen) { return CELL_EFAULT; } *pwritelen = written_len; return CELL_OK; }