mirror of
https://github.com/RPCSX/rpcsx.git
synced 2026-04-20 22:05:12 +00:00
Registers more functions missing.
Implement and stub cell_FreeType2. Reorder cellRtc.
This commit is contained in:
parent
ac79654d1b
commit
b3cb827526
13 changed files with 1494 additions and 60 deletions
|
|
@ -1,4 +1,4 @@
|
|||
#include "stdafx.h"
|
||||
#include "stdafx.h"
|
||||
#include "Emu/Cell/PPUModule.h"
|
||||
|
||||
logs::channel sys_io("sys_io", logs::level::notice);
|
||||
|
|
@ -28,11 +28,21 @@ s32 sys_config_remove_service_listener()
|
|||
fmt::throw_exception("Unimplemented" HERE);
|
||||
}
|
||||
|
||||
s32 sys_config_register_io_error_handler()
|
||||
{
|
||||
fmt::throw_exception("Unimplemented" HERE);
|
||||
}
|
||||
|
||||
s32 sys_config_register_service()
|
||||
{
|
||||
fmt::throw_exception("Unimplemented" HERE);
|
||||
}
|
||||
|
||||
s32 sys_config_unregister_io_error_handler()
|
||||
{
|
||||
fmt::throw_exception("Unimplemented" HERE);
|
||||
}
|
||||
|
||||
s32 sys_config_unregister_service()
|
||||
{
|
||||
fmt::throw_exception("Unimplemented" HERE);
|
||||
|
|
@ -49,6 +59,8 @@ DECLARE(ppu_module_manager::sys_io)("sys_io", []()
|
|||
REG_FUNC(sys_io, sys_config_stop);
|
||||
REG_FUNC(sys_io, sys_config_add_service_listener);
|
||||
REG_FUNC(sys_io, sys_config_remove_service_listener);
|
||||
REG_FUNC(sys_io, sys_config_register_io_error_handler);
|
||||
REG_FUNC(sys_io, sys_config_register_service);
|
||||
REG_FUNC(sys_io, sys_config_unregister_io_error_handler);
|
||||
REG_FUNC(sys_io, sys_config_unregister_service);
|
||||
});
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue