mirror of
https://github.com/holub/mame
synced 2025-05-20 12:48:53 +03:00
added device_config to the disassembler.
This commit is contained in:
parent
e41849f68c
commit
ea20c30175
@ -1283,7 +1283,7 @@ static UINT32 decode_opcode(UINT32 pc, const M68HC11_OPCODE *op_table)
|
||||
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;
|
||||
UINT8 opcode;
|
||||
|
@ -5,7 +5,7 @@
|
||||
|
||||
#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 );
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user