added device_config to the disassembler.

This commit is contained in:
smf- 2008-11-16 21:59:16 +00:00
parent e41849f68c
commit ea20c30175
2 changed files with 2 additions and 2 deletions

View File

@ -1283,7 +1283,7 @@ static UINT32 decode_opcode(UINT32 pc, const M68HC11_OPCODE *op_table)
return flags; return flags;
} }
offs_t hc11_disasm(char *buffer, offs_t pc, const UINT8 *oprom, const UINT8 *opram) offs_t hc11_disasm(const device_config *device, char *buffer, offs_t pc, const UINT8 *oprom, const UINT8 *opram)
{ {
UINT32 flags = 0; UINT32 flags = 0;
UINT8 opcode; UINT8 opcode;

View File

@ -5,7 +5,7 @@
#include "cpuintrf.h" #include "cpuintrf.h"
offs_t hc11_disasm(char *buffer, offs_t pc, const UINT8 *oprom, const UINT8 *opram); offs_t hc11_disasm(const device_config *device, char *buffer, offs_t pc, const UINT8 *oprom, const UINT8 *opram);
CPU_GET_INFO( mc68hc11 ); CPU_GET_INFO( mc68hc11 );