summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/devcpu.h
diff options
context:
space:
mode:
author Olivier Galibert <galibert@pobox.com>2017-07-05 11:44:49 +0200
committer Olivier Galibert <galibert@pobox.com>2017-11-26 17:41:27 +0100
commit6caef2579a1490f05d28bcede731cbdd45fc5c65 (patch)
tree8055384e183be3cb27e7d0894ac53dc96c09e6fa /src/emu/devcpu.h
parent34b222062c89adbeed822f56be6130421777e11f (diff)
dvdisasm: Overhaul [O. Galibert]
Disassemblers are now independant classes. Not only the code is cleaner, but unidasm has access to all the cpu cores again. The interface to the disassembly method has changed from byte buffers to objects that give a result to read methods. This also adds support for lfsr and/or paged PCs.
Diffstat (limited to 'src/emu/devcpu.h')
-rw-r--r--src/emu/devcpu.h12
1 files changed, 0 insertions, 12 deletions
diff --git a/src/emu/devcpu.h b/src/emu/devcpu.h
index 1c4bce13506..35c8c3b2a9e 100644
--- a/src/emu/devcpu.h
+++ b/src/emu/devcpu.h
@@ -50,15 +50,6 @@
//**************************************************************************
-// MACROS
-//**************************************************************************
-
-#define CPU_DISASSEMBLE_NAME(name) cpu_disassemble_##name
-#define CPU_DISASSEMBLE(name) offs_t CPU_DISASSEMBLE_NAME(name)(cpu_device *device, std::ostream &stream, offs_t pc, const u8 *oprom, const u8 *opram, int options)
-#define CPU_DISASSEMBLE_CALL(name) CPU_DISASSEMBLE_NAME(name)(device, stream, pc, oprom, opram, options)
-
-
-//**************************************************************************
// TYPE DEFINITIONS
//**************************************************************************
@@ -86,7 +77,4 @@ private:
};
-typedef offs_t (*cpu_disassemble_func)(cpu_device *device, std::ostream &stream, offs_t pc, const u8 *oprom, const u8 *opram, int options);
-
-
#endif /* MAME_EMU_DEVCPU_H */