blob: 98fba662e6087c87ac7e71845b01c7d75ffe9280 (
plain) (
blame)
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
48
|
// license:BSD-3-Clause
// copyright-holders:Olivier Galibert
/***************************************************************************
m6504.c
MOS Technology 6502, NMOS variant with reduced address bus
***************************************************************************/
#include "emu.h"
#include "m6504.h"
DEFINE_DEVICE_TYPE(M6504, m6504_device, "m6504", "MOS Technology 6504")
m6504_device::m6504_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock) :
m6502_device(mconfig, M6504, tag, owner, clock)
{
program_config.m_addr_width = 13;
sprogram_config.m_addr_width = 13;
}
void m6504_device::device_start()
{
mintf = std::make_unique<mi_6504>();
init();
}
uint8_t m6504_device::mi_6504::read(uint16_t adr)
{
return program.read_byte(adr & 0x1fff);
}
uint8_t m6504_device::mi_6504::read_sync(uint16_t adr)
{
return csprogram.read_byte(adr & 0x1fff);
}
uint8_t m6504_device::mi_6504::read_arg(uint16_t adr)
{
return cprogram.read_byte(adr & 0x1fff);
}
void m6504_device::mi_6504::write(uint16_t adr, uint8_t val)
{
program.write_byte(adr & 0x1fff, val);
}
|