diff options
author | 2017-01-25 10:20:18 +1100 | |
---|---|---|
committer | 2017-01-25 10:20:18 +1100 | |
commit | be7552fa577ab6704841750f93262d5beb0acef2 (patch) | |
tree | 7c58293412eff165cea8cdec4f3b6b3ae0f6330a /src/devices/cpu/clipper/clipper.h | |
parent | 9db7b63e9a5fe3ea6712fab5b0f0dd864dfc06bc (diff) |
Fixed numerous compile errors (nw)
Diffstat (limited to 'src/devices/cpu/clipper/clipper.h')
-rw-r--r-- | src/devices/cpu/clipper/clipper.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/devices/cpu/clipper/clipper.h b/src/devices/cpu/clipper/clipper.h index be2c5e2603f..037b6549195 100644 --- a/src/devices/cpu/clipper/clipper.h +++ b/src/devices/cpu/clipper/clipper.h @@ -261,11 +261,11 @@ private: u32 address; } m_info; - void clipper_device::decode_instruction(u16 insn); - int clipper_device::execute_instruction(); - bool clipper_device::evaluate_branch(); + void decode_instruction(u16 insn); + int execute_instruction(); + bool evaluate_branch(); - uint32_t clipper_device::intrap(u32 vector, u32 pc, u32 cts = CTS_NO_CPU_TRAP, u32 mts = MTS_NO_MEMORY_TRAP); + uint32_t intrap(u32 vector, u32 pc, u32 cts = CTS_NO_CPU_TRAP, u32 mts = MTS_NO_MEMORY_TRAP); }; class clipper_c100_device : public clipper_device |