mirror of
https://github.com/RPCSX/rpcsx.git
synced 2026-04-05 22:47:03 +00:00
Some cleanup
This commit is contained in:
parent
faab4ed6db
commit
d1fff053c2
23 changed files with 278 additions and 850 deletions
|
|
@ -5,9 +5,8 @@
|
|||
|
||||
u8 PPCDecoder::DecodeMemory(const u64 address)
|
||||
{
|
||||
u32 instr;
|
||||
Memory.Read32ByAddr(address, &instr);
|
||||
u32 instr = Memory.Read32(address);
|
||||
Decode(instr);
|
||||
|
||||
return 4;
|
||||
return sizeof(u32);
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue