2014-06-25 00:38:34 +02:00
|
|
|
#pragma once
|
|
|
|
|
|
2015-06-19 17:49:38 +02:00
|
|
|
namespace vm { using namespace ps3; }
|
|
|
|
|
|
2015-03-02 22:09:20 +01:00
|
|
|
class PPUThread;
|
|
|
|
|
|
2015-05-27 05:11:59 +02:00
|
|
|
struct lv2_int_handler_t
|
2015-03-02 22:09:20 +01:00
|
|
|
{
|
|
|
|
|
std::shared_ptr<CPUThread> handler;
|
2015-05-27 05:11:59 +02:00
|
|
|
|
|
|
|
|
lv2_int_handler_t(const std::shared_ptr<CPUThread>& handler)
|
|
|
|
|
: handler(handler)
|
|
|
|
|
{
|
|
|
|
|
}
|
2015-03-02 22:09:20 +01:00
|
|
|
};
|
|
|
|
|
|
2015-05-27 05:11:59 +02:00
|
|
|
REG_ID_TYPE(lv2_int_handler_t, 0x0B); // SYS_INTR_SERVICE_HANDLE_OBJECT
|
|
|
|
|
|
2014-06-25 00:38:34 +02:00
|
|
|
// SysCalls
|
|
|
|
|
s32 sys_interrupt_tag_destroy(u32 intrtag);
|
2015-07-01 00:25:52 +02:00
|
|
|
s32 sys_interrupt_thread_establish(vm::ptr<u32> ih, u32 intrtag, u32 intrthread, u64 arg);
|
2015-03-02 22:09:20 +01:00
|
|
|
s32 _sys_interrupt_thread_disestablish(u32 ih, vm::ptr<u64> r13);
|
2015-03-24 16:17:53 +01:00
|
|
|
void sys_interrupt_thread_eoi(PPUThread& CPU);
|