mirror of
https://github.com/RPCSX/rpcsx.git
synced 2026-04-04 14:08:37 +00:00
Fix ARM build (#12606)
This commit is contained in:
parent
75efc79930
commit
290226539f
2 changed files with 6 additions and 2 deletions
|
|
@ -710,8 +710,8 @@ struct ppu_far_jumps_t
|
|||
Label jmp_address = c.newLabel();
|
||||
Label imm_address = c.newLabel();
|
||||
|
||||
c.ldr(args[1].r32(), arm::ptr(imm_address));
|
||||
c.str(args[1].r32(), arm::Mem(args[0], ::offset32(&ppu_thread::cia)));
|
||||
c.ldr(args[1].w(), arm::ptr(imm_address));
|
||||
c.str(args[1].w(), arm::Mem(args[0], ::offset32(&ppu_thread::cia)));
|
||||
c.ldr(args[1], arm::ptr(jmp_address));
|
||||
c.br(args[1]);
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue