diff options
author | 2009-08-22 06:25:07 +0000 | |
---|---|---|
committer | 2009-08-22 06:25:07 +0000 | |
commit | f474114e1d33a559fdb9e3369d648ce45e081e99 (patch) | |
tree | e7ef30fac785ae9c7b91750733249f116fb0bc5e /src/emu/cpu/e132xs/32xsdasm.c | |
parent | b99862230da58440c266b30762484acb1f2ee778 (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.c | 5 |
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 ); +} |