mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-11 09:18:40 +12:00
Improved mem_t.
- Implemented mem_ptr_t. - Fixed issue 3.
This commit is contained in:
parent
e655999a23
commit
eebe859f83
20 changed files with 259 additions and 170 deletions
|
@ -380,11 +380,11 @@ bool ELF64Loader::LoadPhdrData(u64 offset)
|
|||
#endif
|
||||
Memory.Write32(stub.s_text + i*4, tbl + i*8);
|
||||
|
||||
mem32_t out_tbl(tbl + i*8);
|
||||
mem32_ptr_t out_tbl(tbl + i*8);
|
||||
out_tbl += dst + i*section;
|
||||
out_tbl += GetFuncNumById(nid);
|
||||
|
||||
mem32_t out_dst(dst + i*section);
|
||||
mem32_ptr_t out_dst(dst + i*section);
|
||||
out_dst += OR(11, 2, 2, 0);
|
||||
out_dst += SC(2);
|
||||
out_dst += BCLR(0x10 | 0x04, 0, 0, 0);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue