summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/cpu/pps4/pps4.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/cpu/pps4/pps4.cpp')
-rw-r--r--src/devices/cpu/pps4/pps4.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/devices/cpu/pps4/pps4.cpp b/src/devices/cpu/pps4/pps4.cpp
index c0b5ad60aa8..bddeddd6097 100644
--- a/src/devices/cpu/pps4/pps4.cpp
+++ b/src/devices/cpu/pps4/pps4.cpp
@@ -78,6 +78,7 @@
#include "emu.h"
#include "pps4.h"
+#include "pps4dasm.h"
#include "debugger.h"
@@ -139,10 +140,9 @@ void pps4_device::W(u8 data)
m_SAG = 0;
}
-offs_t pps4_device::disasm_disassemble(std::ostream &stream, offs_t pc, const u8 *oprom, const u8 *opram, u32 options)
+util::disasm_interface *pps4_device::create_disassembler()
{
- extern CPU_DISASSEMBLE( pps4 );
- return CPU_DISASSEMBLE_NAME(pps4)(this, stream, pc, oprom, opram, options);
+ return new pps4_disassembler;
}
/**