summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/cpu/rsp/rsp.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/cpu/rsp/rsp.h')
-rw-r--r--src/devices/cpu/rsp/rsp.h7
1 files changed, 1 insertions, 6 deletions
diff --git a/src/devices/cpu/rsp/rsp.h b/src/devices/cpu/rsp/rsp.h
index cf1a7019f92..6c876671ab1 100644
--- a/src/devices/cpu/rsp/rsp.h
+++ b/src/devices/cpu/rsp/rsp.h
@@ -160,9 +160,7 @@ protected:
virtual void state_string_export(const device_state_entry &entry, std::string &str) const override;
// device_disasm_interface overrides
- virtual uint32_t disasm_min_opcode_bytes() const override { return 4; }
- virtual uint32_t disasm_max_opcode_bytes() const override { return 4; }
- virtual offs_t disasm_disassemble(std::ostream &stream, offs_t pc, const uint8_t *oprom, const uint8_t *opram, uint32_t options) override;
+ virtual util::disasm_interface *create_disassembler() override;
void unimplemented_opcode(uint32_t op);
@@ -299,7 +297,4 @@ private:
DECLARE_DEVICE_TYPE(RSP, rsp_device)
-extern offs_t rsp_dasm_one(std::ostream &stream, offs_t pc, uint32_t op);
-
-
#endif // MAME_CPU_RSP_RSP_H