mirror of
https://github.com/RPCSX/rpcsx.git
synced 2026-04-20 22:05:12 +00:00
VSH: Stubs
This commit is contained in:
parent
9d1bb60ad7
commit
1915fe75a4
36 changed files with 876 additions and 64 deletions
36
rpcs3/Emu/Cell/lv2/sys_uart.cpp
Normal file
36
rpcs3/Emu/Cell/lv2/sys_uart.cpp
Normal file
|
|
@ -0,0 +1,36 @@
|
|||
#include "stdafx.h"
|
||||
#include "Emu/System.h"
|
||||
|
||||
#include "Emu/Cell/ErrorCodes.h"
|
||||
|
||||
#include "sys_uart.h"
|
||||
|
||||
LOG_CHANNEL(sys_uart);
|
||||
|
||||
error_code sys_uart_initialize()
|
||||
{
|
||||
sys_uart.todo("sys_uart_initialize()");
|
||||
|
||||
return CELL_OK;
|
||||
}
|
||||
|
||||
error_code sys_uart_receive(vm::ptr<void> buffer, u64 size, u32 unk)
|
||||
{
|
||||
sys_uart.todo("sys_uart_receive(buffer=*0x%x, size=0x%llx, unk=0x%x)", buffer, size, unk);
|
||||
|
||||
return CELL_OK;
|
||||
}
|
||||
|
||||
error_code sys_uart_send(vm::cptr<void> buffer, u64 size, u64 flags)
|
||||
{
|
||||
sys_uart.todo("sys_uart_send(buffer=0x%x, size=0x%llx, flags=0x%x)", buffer, size, flags);
|
||||
|
||||
return CELL_OK;
|
||||
}
|
||||
|
||||
error_code sys_uart_get_params(vm::ptr<char> buffer)
|
||||
{
|
||||
sys_uart.todo("sys_uart_get_params(buffer=0x%x)", buffer);
|
||||
|
||||
return CELL_OK;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue