1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
|
// license:BSD-3-Clause
// copyright-holders:Olivier Galibert
/***************************************************************************
deco16.c
6502, reverse-engineered DECO variant
***************************************************************************/
#include "emu.h"
#include "deco16.h"
#define DECO16_VERBOSE 1
const device_type DECO16 = &device_creator<deco16_device>;
deco16_device::deco16_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock) :
m6502_device(mconfig, DECO16, "DECO16", tag, owner, clock, "deco16", __FILE__),
io_config("io", ENDIANNESS_LITTLE, 8, 16)
{
}
offs_t deco16_device::disasm_disassemble(char *buffer, offs_t pc, const UINT8 *oprom, const UINT8 *opram, UINT32 options)
{
return disassemble_generic(buffer, pc, oprom, opram, options, disasm_entries);
}
void deco16_device::device_start()
{
if(direct_disabled)
mintf = new mi_default_nd;
else
mintf = new mi_default_normal;
init();
io = &space(AS_IO);
}
const address_space_config *deco16_device::memory_space_config(address_spacenum spacenum) const
{
return spacenum == AS_PROGRAM ? &program_config : spacenum == AS_IO ? &io_config : NULL;
}
#include "cpu/m6502/deco16.inc"
|