summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/cpu/e132xs/32xsdasm.c
diff options
context:
space:
mode:
author Aaron Giles <aaron@aarongiles.com>2009-08-22 06:25:07 +0000
committer Aaron Giles <aaron@aarongiles.com>2009-08-22 06:25:07 +0000
commitf474114e1d33a559fdb9e3369d648ce45e081e99 (patch)
treee7ef30fac785ae9c7b91750733249f116fb0bc5e /src/emu/cpu/e132xs/32xsdasm.c
parentb99862230da58440c266b30762484acb1f2ee778 (diff)
Added infrastructure to compile universal standalone disassembler:
- added unidasm to the tools build - split the disassemblers out of libcpu and into new libdasm - ensured the disassembly entry points for all disassemblers are in the source file for the disassembler (sometimes new generic versions were created) Still needs command line options and file loading, but the fundamentals are present, and it links.
Diffstat (limited to 'src/emu/cpu/e132xs/32xsdasm.c')
-rw-r--r--src/emu/cpu/e132xs/32xsdasm.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/emu/cpu/e132xs/32xsdasm.c b/src/emu/cpu/e132xs/32xsdasm.c
index 67de64d8bf8..a3ed5fd9d21 100644
--- a/src/emu/cpu/e132xs/32xsdasm.c
+++ b/src/emu/cpu/e132xs/32xsdasm.c
@@ -2133,3 +2133,8 @@ unsigned dasm_hyperstone(char *buffer, unsigned pc, const UINT8 *oprom, unsigned
return size | flags | DASMFLAG_SUPPORTED;
}
+
+CPU_DISASSEMBLE( hyperstone_generic )
+{
+ return dasm_hyperstone( buffer, pc, oprom, 0, 0 );
+}