summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/cpu/arcompact/arcompact.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/emu/cpu/arcompact/arcompact.h')
-rw-r--r--src/emu/cpu/arcompact/arcompact.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/emu/cpu/arcompact/arcompact.h b/src/emu/cpu/arcompact/arcompact.h
index 9f91696cec6..bedef23f5d5 100644
--- a/src/emu/cpu/arcompact/arcompact.h
+++ b/src/emu/cpu/arcompact/arcompact.h
@@ -50,8 +50,12 @@ private:
UINT32 m_debugger_temp;
void unimplemented_opcode(UINT16 op);
- inline UINT16 READ32(UINT32 address);
+ inline UINT32 READ32(UINT32 address);
inline void WRITE32(UINT32 address, UINT32 data);
+ inline UINT16 READ16(UINT32 address);
+ inline void WRITE16(UINT32 address, UINT16 data);
+
+
};