mirror of
https://github.com/RPCSX/rpcsx.git
synced 2026-04-04 22:19:02 +00:00
cpu_type removed, system_type added
cpu_state -> cpu_flag vm::stack_allocator template improved ppu_cmd type changed to enum, cmd64 type added
This commit is contained in:
parent
009ac37a7d
commit
bdeccd889f
39 changed files with 449 additions and 492 deletions
|
|
@ -699,11 +699,11 @@ struct fs_aio_thread : ppu_thread
|
|||
|
||||
virtual void cpu_task() override
|
||||
{
|
||||
while (ppu_cmd cmd = cmd_wait())
|
||||
while (cmd64 cmd = cmd_wait())
|
||||
{
|
||||
const u32 type = cmd.arg1<u32>();
|
||||
const s32 xid = cmd.arg2<s32>();
|
||||
const ppu_cmd cmd2 = cmd_queue[cmd_queue.peek() + 1];
|
||||
const cmd64 cmd2 = cmd_get(1);
|
||||
const auto aio = cmd2.arg1<vm::ptr<CellFsAio>>();
|
||||
const auto func = cmd2.arg2<fs_aio_cb_t>();
|
||||
cmd_pop(1);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue