mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-11 09:18:40 +12:00
- Implemented ARM9Interpreter & ARM9DisAsm.
- Implemented MemoryBlockLE & DynamicMemoryBlockLE. - Implemented CPUDecoder.
This commit is contained in:
parent
0b35be32a4
commit
6b22e7d90a
31 changed files with 475 additions and 177 deletions
|
@ -2,15 +2,12 @@
|
|||
#include "Emu/CPU/CPUDecoder.h"
|
||||
#include "PPCInstrTable.h"
|
||||
|
||||
class PPCDecoder
|
||||
class PPCDecoder : public CPUDecoder
|
||||
{
|
||||
protected:
|
||||
u32 m_code;
|
||||
|
||||
public:
|
||||
u32 GetCode() const { return m_code; }
|
||||
|
||||
virtual void Decode(const u32 code)=0;
|
||||
|
||||
virtual void DecodeMemory(const u64 address);
|
||||
};
|
||||
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue