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.h9
1 files changed, 2 insertions, 7 deletions
diff --git a/src/devices/cpu/rsp/rsp.h b/src/devices/cpu/rsp/rsp.h
index cf1a7019f92..5f7b9ccb001 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);
@@ -238,7 +236,7 @@ private:
address_space *m_program;
protected:
- direct_read_data *m_direct;
+ direct_read_data<0> *m_direct;
private:
std::unique_ptr<rsp_cop2> m_cop2;
@@ -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