mirror of
https://github.com/RPCSX/rpcsx.git
synced 2026-02-17 21:24:18 +01:00
17 lines
237 B
C++
17 lines
237 B
C++
#pragma once
|
|
#include "Emu/CPU/CPUDecoder.h"
|
|
|
|
class ARMv7Thread;
|
|
|
|
class ARMv7Decoder : public CPUDecoder
|
|
{
|
|
ARMv7Thread& m_thr;
|
|
|
|
public:
|
|
ARMv7Decoder(ARMv7Thread& thr) : m_thr(thr)
|
|
{
|
|
}
|
|
|
|
virtual u8 DecodeMemory(const u32 address);
|
|
};
|