summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/cpu/arcompact/arcompact.h
diff options
context:
space:
mode:
author mamehaze <mamehaze@users.noreply.github.com>2014-12-03 14:51:54 +0000
committer mamehaze <mamehaze@users.noreply.github.com>2014-12-03 14:51:54 +0000
commit4476c481f4b0af46fb7d4012184451519b0dbe16 (patch)
tree035d55d34a1ad413e46373e71797a04cd4cdaaa1 /src/emu/cpu/arcompact/arcompact.h
parentf7f3a6e9d2da2c1943c65fbf13dc3ee3b5cc2dc1 (diff)
misc arc (nw)
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);
+
+
};