summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
author Scott Stone <tafoid@users.noreply.github.com>2013-01-31 02:15:53 +0000
committer Scott Stone <tafoid@users.noreply.github.com>2013-01-31 02:15:53 +0000
commit8489d422c4a1e8a5ab2eabd8c8045ccf901143a9 (patch)
tree14f63b9d66ee5f56e99f41e4f1b8380f30f17cdc /src
parent0909ab8305c595b60cd401f9fa1aeeba09c2508c (diff)
Compile Fix for mess (nw)
Diffstat (limited to 'src')
-rw-r--r--src/emu/cpu/sm8500/sm8500.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/emu/cpu/sm8500/sm8500.h b/src/emu/cpu/sm8500/sm8500.h
index 2da67ebd320..104b94a60e6 100644
--- a/src/emu/cpu/sm8500/sm8500.h
+++ b/src/emu/cpu/sm8500/sm8500.h
@@ -79,8 +79,8 @@ protected:
virtual offs_t disasm_disassemble(char *buffer, offs_t pc, const UINT8 *oprom, const UINT8 *opram, UINT32 options);
inline void get_sp();
- inline UINT8 mem_readbyte(UINT32 offset);
- inline void mem_writebyte(UINT32 offset, UINT8 data);
+ UINT8 mem_readbyte(UINT32 offset);
+ void mem_writebyte(UINT32 offset, UINT8 data);
inline UINT16 mem_readword(UINT32 address) { return (mem_readbyte(address ) << 8) | (mem_readbyte(address+1)); }
inline void mem_writeword(UINT32 address, UINT16 value) { mem_writebyte(address, value >> 8); mem_writebyte(address+1, value); }
inline void take_interrupt(UINT16 vector);