mirror of
https://github.com/holub/mame
synced 2025-06-02 02:49:44 +03:00
944 lines
21 KiB
C
944 lines
21 KiB
C
/**********************************************************************
|
|
|
|
MOS 6526/8520 CIA interface and emulation
|
|
|
|
This function emulates all the functionality MOS6526 or
|
|
MOS8520 complex interface adapters.
|
|
|
|
**********************************************************************/
|
|
|
|
#include "emu.h"
|
|
#include "6526cia.h"
|
|
|
|
|
|
|
|
//**************************************************************************
|
|
// MACROS / CONSTANTS
|
|
//**************************************************************************
|
|
|
|
/* CIA registers */
|
|
#define CIA_PRA 0
|
|
#define CIA_PRB 1
|
|
#define CIA_DDRA 2
|
|
#define CIA_DDRB 3
|
|
#define CIA_TALO 4
|
|
#define CIA_TAHI 5
|
|
#define CIA_TBLO 6
|
|
#define CIA_TBHI 7
|
|
#define CIA_TOD0 8 /* 6526: 1/10 seconds 8520: bits 0- 7 */
|
|
#define CIA_TOD1 9 /* 6526: seconds 8520: bits 8-15 */
|
|
#define CIA_TOD2 10 /* 6526: minutes 8520: bits 16-23 */
|
|
#define CIA_TOD3 11 /* 6526: hours 8520: N/A */
|
|
#define CIA_SDR 12
|
|
#define CIA_ICR 13
|
|
#define CIA_CRA 14
|
|
#define CIA_CRB 15
|
|
|
|
#define CIA_CRA_START 0x01
|
|
#define CIA_CRA_PBON 0x02
|
|
#define CIA_CRA_OUTMODE 0x04
|
|
#define CIA_CRA_RUNMODE 0x08
|
|
#define CIA_CRA_LOAD 0x10
|
|
#define CIA_CRA_INMODE 0x20
|
|
#define CIA_CRA_SPMODE 0x40
|
|
#define CIA_CRA_TODIN 0x80
|
|
|
|
|
|
|
|
//**************************************************************************
|
|
// DEVICE CONFIGURATION
|
|
//**************************************************************************
|
|
|
|
// device type definition
|
|
const device_type LEGACY_MOS6526R1 = &device_creator<legacy_mos6526r1_device>;
|
|
const device_type LEGACY_MOS6526R2 = &device_creator<legacy_mos6526r2_device>;
|
|
const device_type LEGACY_MOS8520 = &device_creator<legacy_mos8520_device>;
|
|
const device_type LEGACY_MOS5710 = &device_creator<legacy_mos5710_device>;
|
|
|
|
|
|
|
|
//**************************************************************************
|
|
// INLINE HELPERS
|
|
//**************************************************************************
|
|
|
|
inline attotime legacy_mos6526_device::cycles_to_time(int c)
|
|
{
|
|
return attotime::from_hz(clock()) * c;
|
|
}
|
|
|
|
|
|
|
|
//**************************************************************************
|
|
// LIVE DEVICE
|
|
//**************************************************************************
|
|
|
|
//-------------------------------------------------
|
|
// legacy_mos6526_device - constructor
|
|
//-------------------------------------------------
|
|
|
|
legacy_mos6526_device::legacy_mos6526_device(const machine_config &mconfig, device_type type, const char *name, const char *tag, device_t *owner, UINT32 clock, const char *shortname, const char *source)
|
|
: device_t(mconfig, type, name, tag, owner, clock, shortname, source),
|
|
m_write_irq(*this),
|
|
m_write_pc(*this),
|
|
m_write_cnt(*this),
|
|
m_write_sp(*this),
|
|
m_read_pa(*this),
|
|
m_write_pa(*this),
|
|
m_read_pb(*this),
|
|
m_write_pb(*this),
|
|
m_tod_clock(0)
|
|
{
|
|
}
|
|
|
|
legacy_mos6526r1_device::legacy_mos6526r1_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock)
|
|
: legacy_mos6526_device(mconfig, LEGACY_MOS6526R1, "LEGACY_MOS6526R1", tag, owner, clock, "legacy_mos6526r1", __FILE__) { }
|
|
|
|
legacy_mos6526r2_device::legacy_mos6526r2_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock)
|
|
: legacy_mos6526_device(mconfig, LEGACY_MOS6526R2, "LEGACY_MOS6526R2", tag, owner, clock, "legacy_mos6526r2", __FILE__) { }
|
|
|
|
legacy_mos8520_device::legacy_mos8520_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock)
|
|
: legacy_mos6526_device(mconfig, LEGACY_MOS8520, "8520 CIA", tag, owner, clock, "legacy_mos8520", __FILE__) { }
|
|
|
|
legacy_mos5710_device::legacy_mos5710_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock)
|
|
: legacy_mos6526_device(mconfig, LEGACY_MOS5710, "LEGACY_MOS5710", tag, owner, clock, "legacy_mos5710", __FILE__) { }
|
|
|
|
|
|
//-------------------------------------------------
|
|
// device_reset - device-specific reset
|
|
//-------------------------------------------------
|
|
|
|
void legacy_mos6526_device::device_reset()
|
|
{
|
|
/* clear things out */
|
|
m_port[0].m_latch = 0x00;
|
|
m_port[0].m_in = 0x00;
|
|
m_port[0].m_out = 0x00;
|
|
m_port[0].m_mask_value = 0xff;
|
|
m_port[1].m_latch = 0x00;
|
|
m_port[1].m_in = 0x00;
|
|
m_port[1].m_out = 0x00;
|
|
m_port[1].m_mask_value = 0xff;
|
|
m_tod = 0;
|
|
m_tod_latch = 0;
|
|
m_alarm = 0;
|
|
m_icr = 0x00;
|
|
m_ics = 0x00;
|
|
m_irq = 0;
|
|
m_shift = 0;
|
|
m_loaded = 0;
|
|
m_cnt = 1;
|
|
m_sp = 0;
|
|
|
|
/* initialize data direction registers */
|
|
m_port[0].m_ddr = 0xff;
|
|
m_port[1].m_ddr = 0xff;
|
|
|
|
/* TOD running by default */
|
|
m_tod_running = TRUE;
|
|
|
|
/* initialize timers */
|
|
for(int t = 0; t < 2; t++)
|
|
{
|
|
cia_timer *timer = &m_timer[t];
|
|
timer->m_cia = this;
|
|
timer->m_clock = clock();
|
|
timer->m_latch = 0xffff;
|
|
timer->m_count = 0x0000;
|
|
timer->m_mode = 0x00;
|
|
}
|
|
}
|
|
|
|
|
|
//-------------------------------------------------
|
|
// device_start - device-specific startup
|
|
//-------------------------------------------------
|
|
|
|
void legacy_mos6526_device::device_start()
|
|
{
|
|
// resolve callbacks
|
|
m_write_irq.resolve_safe();
|
|
m_write_pc.resolve_safe();
|
|
m_write_cnt.resolve_safe();
|
|
m_write_sp.resolve_safe();
|
|
m_read_pa.resolve_safe(0xff);
|
|
m_write_pa.resolve_safe();
|
|
m_read_pb.resolve_safe(0xff);
|
|
m_write_pb.resolve_safe();
|
|
|
|
/* clear out CIA structure, and copy the interface */
|
|
m_flag = 1;
|
|
|
|
/* setup ports */
|
|
for (int p = 0; p < ARRAY_LENGTH(m_port); p++)
|
|
{
|
|
m_port[p].m_mask_value = 0xff;
|
|
}
|
|
|
|
/* setup timers */
|
|
m_pc_timer = timer_alloc(TIMER_PC);
|
|
|
|
for (int t = 0; t < ARRAY_LENGTH(m_timer); t++)
|
|
{
|
|
cia_timer *timer = &m_timer[t];
|
|
timer->m_timer = machine().scheduler().timer_alloc(FUNC(timer_proc), (void*)this);
|
|
timer->m_cia = this;
|
|
timer->m_irq = 0x01 << t;
|
|
}
|
|
|
|
if (m_tod_clock > 0)
|
|
{
|
|
m_tod_timer = timer_alloc(TIMER_TOD);
|
|
m_tod_timer->adjust(attotime::from_hz(m_tod_clock), 0, attotime::from_hz(m_tod_clock));
|
|
}
|
|
|
|
/* state save support */
|
|
save_item(NAME(m_port[0].m_ddr));
|
|
save_item(NAME(m_port[0].m_latch));
|
|
save_item(NAME(m_port[0].m_in));
|
|
save_item(NAME(m_port[0].m_out));
|
|
save_item(NAME(m_port[0].m_mask_value));
|
|
save_item(NAME(m_port[1].m_ddr));
|
|
save_item(NAME(m_port[1].m_latch));
|
|
save_item(NAME(m_port[1].m_in));
|
|
save_item(NAME(m_port[1].m_out));
|
|
save_item(NAME(m_port[1].m_mask_value));
|
|
save_item(NAME(m_timer[0].m_latch));
|
|
save_item(NAME(m_timer[0].m_count));
|
|
save_item(NAME(m_timer[0].m_mode));
|
|
save_item(NAME(m_timer[0].m_irq));
|
|
save_item(NAME(m_timer[1].m_latch));
|
|
save_item(NAME(m_timer[1].m_count));
|
|
save_item(NAME(m_timer[1].m_mode));
|
|
save_item(NAME(m_timer[1].m_irq));
|
|
save_item(NAME(m_tod));
|
|
save_item(NAME(m_tod_latch));
|
|
save_item(NAME(m_tod_latched));
|
|
save_item(NAME(m_tod_running));
|
|
save_item(NAME(m_alarm));
|
|
save_item(NAME(m_icr));
|
|
save_item(NAME(m_ics));
|
|
save_item(NAME(m_irq));
|
|
save_item(NAME(m_flag));
|
|
save_item(NAME(m_loaded));
|
|
save_item(NAME(m_sdr));
|
|
save_item(NAME(m_sp));
|
|
save_item(NAME(m_cnt));
|
|
save_item(NAME(m_shift));
|
|
save_item(NAME(m_serial));
|
|
}
|
|
|
|
|
|
//-------------------------------------------------
|
|
// device_timer - handler timer events
|
|
//-------------------------------------------------
|
|
|
|
void legacy_mos6526_device::device_timer(emu_timer &timer, device_timer_id id, int param, void *ptr)
|
|
{
|
|
switch (id)
|
|
{
|
|
case TIMER_PC:
|
|
m_write_pc(1);
|
|
break;
|
|
|
|
case TIMER_TOD:
|
|
clock_tod();
|
|
break;
|
|
}
|
|
}
|
|
|
|
|
|
/*-------------------------------------------------
|
|
set_port_mask_value
|
|
-------------------------------------------------*/
|
|
|
|
void legacy_mos6526_device::set_port_mask_value(int port, int data)
|
|
{
|
|
m_port[port].m_mask_value = data;
|
|
}
|
|
|
|
/*-------------------------------------------------
|
|
update_pc - pulse /pc output
|
|
-------------------------------------------------*/
|
|
|
|
void legacy_mos6526_device::update_pc()
|
|
{
|
|
m_write_pc(0);
|
|
|
|
m_pc_timer->adjust(cycles_to_time(1));
|
|
}
|
|
|
|
/*-------------------------------------------------
|
|
update_interrupts
|
|
-------------------------------------------------*/
|
|
|
|
void legacy_mos6526_device::update_interrupts()
|
|
{
|
|
UINT8 new_irq;
|
|
|
|
/* always update the high bit of ICS */
|
|
if (m_ics & 0x7f)
|
|
{
|
|
m_ics |= 0x80;
|
|
}
|
|
else
|
|
{
|
|
m_ics &= ~0x80;
|
|
}
|
|
|
|
/* based on what is enabled, set/clear the IRQ via the custom chip */
|
|
new_irq = (m_ics & m_icr) ? 1 : 0;
|
|
if (m_irq != new_irq)
|
|
{
|
|
m_irq = new_irq;
|
|
m_write_irq(m_irq);
|
|
}
|
|
}
|
|
|
|
|
|
/*-------------------------------------------------
|
|
timer_bump
|
|
-------------------------------------------------*/
|
|
|
|
void legacy_mos6526_device::timer_bump(int timer)
|
|
{
|
|
m_timer[timer].update(timer, -1);
|
|
|
|
if (m_timer[timer].m_count == 0x00)
|
|
{
|
|
timer_underflow(timer);
|
|
}
|
|
else
|
|
{
|
|
m_timer[timer].update(timer, m_timer[timer].m_count - 1);
|
|
}
|
|
}
|
|
|
|
/*-------------------------------------------------
|
|
cia_timer_underflow
|
|
-------------------------------------------------*/
|
|
|
|
void legacy_mos6526_device::timer_underflow(int timer)
|
|
{
|
|
assert((timer == 0) || (timer == 1));
|
|
|
|
/* set the status and update interrupts */
|
|
m_ics |= m_timer[timer].m_irq;
|
|
update_interrupts();
|
|
|
|
/* if one-shot mode, turn it off */
|
|
if (m_timer[timer].m_mode & 0x08)
|
|
{
|
|
m_timer[timer].m_mode &= 0xfe;
|
|
}
|
|
|
|
/* reload the timer */
|
|
m_timer[timer].update(timer, m_timer[timer].m_latch);
|
|
|
|
/* timer A has some interesting properties */
|
|
if (timer == 0)
|
|
{
|
|
/* such as cascading to timer B */
|
|
if ((m_timer[1].m_mode & 0x41) == 0x41)
|
|
{
|
|
if (m_cnt || !(m_timer[1].m_mode & 0x20))
|
|
{
|
|
timer_bump(1);
|
|
}
|
|
}
|
|
|
|
/* also the serial line */
|
|
if ((m_timer[timer].m_irq == 0x01) && (m_timer[timer].m_mode & CIA_CRA_SPMODE))
|
|
{
|
|
if (m_loaded || m_shift)
|
|
{
|
|
/* falling edge */
|
|
if (m_cnt)
|
|
{
|
|
if (m_shift == 0)
|
|
{
|
|
/* load shift register */
|
|
m_loaded = 0;
|
|
m_serial = m_sdr;
|
|
}
|
|
|
|
/* transmit MSB */
|
|
m_sp = BIT(m_serial, 7);
|
|
m_write_sp(m_sp);
|
|
|
|
/* toggle CNT */
|
|
m_cnt = !m_cnt;
|
|
m_write_cnt(m_cnt);
|
|
|
|
/* shift data */
|
|
m_serial <<= 1;
|
|
m_shift++;
|
|
|
|
if (m_shift == 8)
|
|
{
|
|
/* signal interrupt */
|
|
m_ics |= 0x08;
|
|
update_interrupts();
|
|
}
|
|
}
|
|
else
|
|
{
|
|
/* toggle CNT */
|
|
m_cnt = !m_cnt;
|
|
m_write_cnt(m_cnt);
|
|
|
|
if (m_shift == 8)
|
|
{
|
|
m_shift = 0;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
/*-------------------------------------------------
|
|
TIMER_CALLBACK( cia_timer_proc )
|
|
-------------------------------------------------*/
|
|
|
|
TIMER_CALLBACK( legacy_mos6526_device::timer_proc )
|
|
{
|
|
legacy_mos6526_device *cia = reinterpret_cast<legacy_mos6526_device *>(ptr);
|
|
|
|
cia->timer_underflow(param);
|
|
}
|
|
|
|
/*-------------------------------------------------
|
|
bcd_increment
|
|
-------------------------------------------------*/
|
|
|
|
static UINT8 bcd_increment(UINT8 value)
|
|
{
|
|
value++;
|
|
if ((value & 0x0f) >= 0x0a)
|
|
value += 0x10 - 0x0a;
|
|
return value;
|
|
}
|
|
|
|
/*-------------------------------------------------
|
|
cia6526_increment
|
|
-------------------------------------------------*/
|
|
|
|
void legacy_mos6526_device::increment()
|
|
{
|
|
/* break down TOD value into components */
|
|
UINT8 subsecond = (UINT8) (m_tod >> 0);
|
|
UINT8 second = (UINT8) (m_tod >> 8);
|
|
UINT8 minute = (UINT8) (m_tod >> 16);
|
|
UINT8 hour = (UINT8) (m_tod >> 24);
|
|
|
|
subsecond = bcd_increment(subsecond);
|
|
if (subsecond >= 0x10)
|
|
{
|
|
subsecond = 0x00;
|
|
second = bcd_increment(second);
|
|
if (second >= ((m_timer[0].m_mode & 0x80) ? 0x50 : 0x60))
|
|
{
|
|
second = 0x00;
|
|
minute = bcd_increment(minute);
|
|
if (minute >= 0x60)
|
|
{
|
|
minute = 0x00;
|
|
if (hour == 0x91)
|
|
hour = 0x00;
|
|
else if (hour == 0x89)
|
|
hour = 0x90;
|
|
else if (hour == 0x11)
|
|
hour = 0x80;
|
|
else if (hour == 0x09)
|
|
hour = 0x10;
|
|
else
|
|
hour++;
|
|
}
|
|
}
|
|
}
|
|
|
|
/* update the TOD with new value */
|
|
m_tod = (((UINT32) subsecond) << 0)
|
|
| (((UINT32) second) << 8)
|
|
| (((UINT32) minute) << 16)
|
|
| (((UINT32) hour) << 24);
|
|
}
|
|
|
|
/*-------------------------------------------------
|
|
cia_clock_tod - Update TOD on CIA A
|
|
-------------------------------------------------*/
|
|
|
|
void legacy_mos6526_device::clock_tod()
|
|
{
|
|
if (m_tod_running)
|
|
{
|
|
if ((type() == LEGACY_MOS6526R1) || (type() == LEGACY_MOS6526R2))
|
|
{
|
|
/* The 6526 split the value into hours, minutes, seconds and
|
|
* subseconds */
|
|
increment();
|
|
}
|
|
else if (type() == LEGACY_MOS8520)
|
|
{
|
|
/* the 8520 has a straight 24-bit counter */
|
|
m_tod++;
|
|
m_tod &= 0xffffff;
|
|
}
|
|
|
|
if (m_tod == m_alarm)
|
|
{
|
|
m_ics |= 0x04;
|
|
update_interrupts();
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
/*-------------------------------------------------
|
|
cnt_w
|
|
-------------------------------------------------*/
|
|
|
|
WRITE_LINE_MEMBER(legacy_mos6526_device::cnt_w)
|
|
{
|
|
/* is this a rising edge? */
|
|
if (!m_cnt && state)
|
|
{
|
|
if (m_timer[0].m_mode & CIA_CRA_START)
|
|
{
|
|
/* does timer #0 bump on CNT? */
|
|
if (m_timer[0].m_mode & CIA_CRA_INMODE)
|
|
{
|
|
timer_bump(0);
|
|
}
|
|
}
|
|
|
|
/* if the serial port is set to input, the CNT will shift the port */
|
|
if (!(m_timer[0].m_mode & CIA_CRA_SPMODE))
|
|
{
|
|
m_serial <<= 1;
|
|
m_shift++;
|
|
|
|
if (m_sp)
|
|
{
|
|
m_serial |= 0x01;
|
|
}
|
|
|
|
if (m_shift == 8)
|
|
{
|
|
m_sdr = m_serial;
|
|
m_serial = 0;
|
|
m_shift = 0;
|
|
m_ics |= 0x08;
|
|
update_interrupts();
|
|
}
|
|
}
|
|
|
|
/* does timer #1 bump on CNT? */
|
|
if ((m_timer[1].m_mode & 0x61) == 0x21)
|
|
{
|
|
timer_bump(1);
|
|
}
|
|
}
|
|
|
|
m_cnt = state;
|
|
}
|
|
|
|
WRITE_LINE_MEMBER(legacy_mos6526_device::flag_w)
|
|
{
|
|
/* falling edge */
|
|
if (m_flag && !state)
|
|
{
|
|
m_ics |= 0x10;
|
|
update_interrupts();
|
|
}
|
|
|
|
m_flag = state;
|
|
}
|
|
|
|
READ8_MEMBER( legacy_mos6526_device::read )
|
|
{
|
|
return reg_r(offset);
|
|
}
|
|
|
|
WRITE8_MEMBER( legacy_mos6526_device::write )
|
|
{
|
|
reg_w(offset, data);
|
|
}
|
|
|
|
/*-------------------------------------------------
|
|
reg_r
|
|
-------------------------------------------------*/
|
|
|
|
UINT8 legacy_mos6526_device::reg_r(UINT8 offset)
|
|
{
|
|
cia_timer *timer;
|
|
cia_port *port;
|
|
UINT8 data = 0x00;
|
|
|
|
offset &= 0x0F;
|
|
|
|
switch(offset)
|
|
{
|
|
/* port A/B data */
|
|
case CIA_PRA:
|
|
case CIA_PRB:
|
|
port = &m_port[offset & 1];
|
|
data = (offset & 1) ? m_read_pb(0) : m_read_pa(0);
|
|
data = ((data & ~port->m_ddr) | (port->m_latch & port->m_ddr)) & port->m_mask_value;
|
|
|
|
port->m_in = data;
|
|
|
|
if (offset == CIA_PRB)
|
|
{
|
|
/* timer #0 can change PB6 */
|
|
if (m_timer[0].m_mode & 0x02)
|
|
{
|
|
m_timer[0].update(0, -1);
|
|
if (m_timer[0].m_count != 0)
|
|
{
|
|
data |= 0x40;
|
|
}
|
|
else
|
|
{
|
|
data &= ~0x40;
|
|
}
|
|
}
|
|
|
|
/* timer #1 can change PB7 */
|
|
if (m_timer[1].m_mode & 0x02)
|
|
{
|
|
m_timer[1].update(1, -1);
|
|
if (m_timer[1].m_count != 0)
|
|
{
|
|
data |= 0x80;
|
|
}
|
|
else
|
|
{
|
|
data &= ~0x80;
|
|
}
|
|
}
|
|
|
|
/* pulse /PC following the read */
|
|
update_pc();
|
|
}
|
|
break;
|
|
|
|
/* port A/B direction */
|
|
case CIA_DDRA:
|
|
case CIA_DDRB:
|
|
port = &m_port[offset & 1];
|
|
data = port->m_ddr;
|
|
break;
|
|
|
|
/* timer A/B low byte */
|
|
case CIA_TALO:
|
|
case CIA_TBLO:
|
|
timer = &m_timer[(offset >> 1) & 1];
|
|
data = timer->get_count() >> 0;
|
|
break;
|
|
|
|
/* timer A/B high byte */
|
|
case CIA_TAHI:
|
|
case CIA_TBHI:
|
|
timer = &m_timer[(offset >> 1) & 1];
|
|
data = timer->get_count() >> 8;
|
|
break;
|
|
|
|
/* TOD counter */
|
|
case CIA_TOD0:
|
|
case CIA_TOD1:
|
|
case CIA_TOD2:
|
|
case CIA_TOD3:
|
|
if (type() == LEGACY_MOS8520)
|
|
{
|
|
if (offset == CIA_TOD2)
|
|
{
|
|
m_tod_latch = m_tod;
|
|
m_tod_latched = TRUE;
|
|
}
|
|
}
|
|
else
|
|
{
|
|
if (offset == CIA_TOD3)
|
|
{
|
|
m_tod_latch = m_tod;
|
|
m_tod_latched = TRUE;
|
|
}
|
|
}
|
|
if (offset == CIA_TOD0)
|
|
{
|
|
m_tod_latched = FALSE;
|
|
}
|
|
|
|
if (m_tod_latched)
|
|
{
|
|
data = m_tod_latch >> ((offset - CIA_TOD0) * 8);
|
|
}
|
|
else
|
|
{
|
|
data = m_tod >> ((offset - CIA_TOD0) * 8);
|
|
}
|
|
break;
|
|
|
|
/* serial data ready */
|
|
case CIA_SDR:
|
|
data = m_sdr;
|
|
break;
|
|
|
|
/* interrupt status/clear */
|
|
case CIA_ICR:
|
|
data = m_ics;
|
|
m_ics = 0; /* clear on read */
|
|
update_interrupts();
|
|
break;
|
|
|
|
/* timer A/B mode */
|
|
case CIA_CRA:
|
|
case CIA_CRB:
|
|
timer = &m_timer[offset & 1];
|
|
data = timer->m_mode;
|
|
break;
|
|
}
|
|
|
|
return data;
|
|
}
|
|
|
|
/*-------------------------------------------------
|
|
reg_w
|
|
-------------------------------------------------*/
|
|
|
|
void legacy_mos6526_device::reg_w(UINT8 offset, UINT8 data)
|
|
{
|
|
cia_timer *timer;
|
|
cia_port *port;
|
|
int shift;
|
|
|
|
offset &= 0x0F;
|
|
|
|
switch(offset)
|
|
{
|
|
/* port A/B data */
|
|
case CIA_PRA:
|
|
case CIA_PRB:
|
|
port = &m_port[offset & 1];
|
|
port->m_latch = data;
|
|
port->m_out = (data & port->m_ddr) | (port->m_in & ~port->m_ddr);
|
|
if (offset & 1)
|
|
m_write_pb((offs_t)0, port->m_out);
|
|
else
|
|
m_write_pa((offs_t)0, port->m_out);
|
|
|
|
/* pulse /PC following the write */
|
|
if (offset == CIA_PRB)
|
|
{
|
|
update_pc();
|
|
}
|
|
|
|
break;
|
|
|
|
/* port A/B direction */
|
|
case CIA_DDRA:
|
|
case CIA_DDRB:
|
|
port = &m_port[offset & 1];
|
|
port->m_ddr = data;
|
|
break;
|
|
|
|
/* timer A/B latch low */
|
|
case CIA_TALO:
|
|
case CIA_TBLO:
|
|
timer = &m_timer[(offset >> 1) & 1];
|
|
timer->m_latch = (timer->m_latch & 0xff00) | (data << 0);
|
|
break;
|
|
|
|
/* timer A latch high */
|
|
case CIA_TAHI:
|
|
case CIA_TBHI:
|
|
timer = &m_timer[(offset >> 1) & 1];
|
|
timer->m_latch = (timer->m_latch & 0x00ff) | (data << 8);
|
|
|
|
/* if the timer is one-shot, then force a start on it */
|
|
if (timer->m_mode & 0x08)
|
|
{
|
|
timer->m_mode |= 1;
|
|
timer->update((offset >> 1) & 1, timer->m_latch);
|
|
}
|
|
else
|
|
{
|
|
/* if the timer is off, update the count */
|
|
if (!(timer->m_mode & 0x01))
|
|
{
|
|
timer->update((offset >> 1) & 1, timer->m_latch);
|
|
}
|
|
}
|
|
break;
|
|
|
|
/* time of day latches */
|
|
case CIA_TOD0:
|
|
case CIA_TOD1:
|
|
case CIA_TOD2:
|
|
case CIA_TOD3:
|
|
shift = 8 * ((offset - CIA_TOD0));
|
|
|
|
/* alarm setting mode? */
|
|
if (m_timer[1].m_mode & 0x80)
|
|
{
|
|
m_alarm = (m_alarm & ~(0xff << shift)) | (data << shift);
|
|
}
|
|
/* counter setting mode */
|
|
else
|
|
{
|
|
m_tod = (m_tod & ~(0xff << shift)) | (data << shift);
|
|
}
|
|
|
|
if (type() == LEGACY_MOS8520)
|
|
{
|
|
if (offset == CIA_TOD2)
|
|
{
|
|
m_tod_running = FALSE;
|
|
}
|
|
}
|
|
else
|
|
{
|
|
if (offset == CIA_TOD3)
|
|
{
|
|
m_tod_running = FALSE;
|
|
}
|
|
}
|
|
if (offset == CIA_TOD0)
|
|
{
|
|
m_tod_running = TRUE;
|
|
}
|
|
break;
|
|
|
|
/* serial data ready */
|
|
case CIA_SDR:
|
|
m_sdr = data;
|
|
if (m_timer[0].m_mode & 0x40)
|
|
{
|
|
m_loaded = 1;
|
|
}
|
|
break;
|
|
|
|
/* interrupt control register */
|
|
case CIA_ICR:
|
|
if (data & 0x80)
|
|
{
|
|
m_icr |= data & 0x7f;
|
|
}
|
|
else
|
|
{
|
|
m_icr &= ~(data & 0x7f);
|
|
}
|
|
update_interrupts();
|
|
break;
|
|
|
|
/* timer A/B modes */
|
|
case CIA_CRA:
|
|
case CIA_CRB:
|
|
timer = &m_timer[offset & 1];
|
|
timer->m_mode = data & 0xef;
|
|
|
|
/* force load? */
|
|
if (data & 0x10)
|
|
{
|
|
timer->update(offset & 1, timer->m_latch);
|
|
}
|
|
else
|
|
{
|
|
timer->update(offset & 1, -1);
|
|
}
|
|
break;
|
|
}
|
|
}
|
|
|
|
/*-------------------------------------------------
|
|
is_timer_active
|
|
-------------------------------------------------*/
|
|
|
|
static int is_timer_active(emu_timer *timer)
|
|
{
|
|
attotime t = timer->expire();
|
|
return (t != attotime::never);
|
|
}
|
|
|
|
/*-------------------------------------------------
|
|
update - updates the count and emu_timer for
|
|
a given CIA timer
|
|
-------------------------------------------------*/
|
|
|
|
void legacy_mos6526_device::cia_timer::update(int which, INT32 new_count)
|
|
{
|
|
/* sanity check arguments */
|
|
assert((new_count >= -1) && (new_count <= 0xffff));
|
|
|
|
/* update the timer count, if necessary */
|
|
if ((new_count == -1) && is_timer_active(m_timer))
|
|
{
|
|
UINT16 current_count = (m_timer->elapsed() * m_clock).as_double();
|
|
m_count = m_count - MIN(m_count, current_count);
|
|
}
|
|
|
|
/* set the timer if we are instructed to */
|
|
if (new_count != -1)
|
|
{
|
|
m_count = new_count;
|
|
}
|
|
|
|
/* now update the MAME timer */
|
|
if ((m_mode & 0x01) && ((m_mode & (which ? 0x60 : 0x20)) == 0x00))
|
|
{
|
|
/* timer is on and is connected to clock */
|
|
attotime period = attotime::from_hz(m_clock) * (m_count ? m_count : 0x10000);
|
|
m_timer->adjust(period, which);
|
|
}
|
|
else
|
|
{
|
|
/* timer is off or not connected to clock */
|
|
m_timer->adjust(attotime::never, which);
|
|
}
|
|
}
|
|
|
|
/*-------------------------------------------------
|
|
get_count - get the count for a given CIA
|
|
timer
|
|
-------------------------------------------------*/
|
|
|
|
UINT16 legacy_mos6526_device::cia_timer::get_count()
|
|
{
|
|
UINT16 count;
|
|
|
|
if (is_timer_active(m_timer))
|
|
{
|
|
UINT16 current_count = (m_timer->elapsed() * m_clock).as_double();
|
|
count = m_count - MIN(m_count, current_count);
|
|
}
|
|
else
|
|
{
|
|
count = m_count;
|
|
}
|
|
|
|
return count;
|
|
}
|
|
|
|
/***************************************************************************
|
|
TRAMPOLINES
|
|
***************************************************************************/
|
|
|
|
void cia_set_port_mask_value(device_t *device, int port, int data) { downcast<legacy_mos6526_device *>(device)->set_port_mask_value(port, data); }
|
|
|
|
READ8_DEVICE_HANDLER( mos6526_r ) { return downcast<legacy_mos6526_device *>(device)->reg_r(offset); }
|
|
WRITE8_DEVICE_HANDLER( mos6526_w ) { downcast<legacy_mos6526_device *>(device)->reg_w(offset, data); }
|
|
|
|
READ8_DEVICE_HANDLER( mos6526_pa_r ) { return downcast<legacy_mos6526_device *>(device)->pa_r(offset); }
|
|
READ8_DEVICE_HANDLER( mos6526_pb_r ) { return downcast<legacy_mos6526_device *>(device)->pb_r(offset); }
|
|
|
|
READ_LINE_DEVICE_HANDLER( mos6526_irq_r ) { return downcast<legacy_mos6526_device *>(device)->irq_r(); }
|
|
|
|
WRITE_LINE_DEVICE_HANDLER( mos6526_tod_w ) { downcast<legacy_mos6526_device *>(device)->tod_w(state); }
|
|
|
|
READ_LINE_DEVICE_HANDLER( mos6526_cnt_r ) { return downcast<legacy_mos6526_device *>(device)->cnt_r(); }
|
|
WRITE_LINE_DEVICE_HANDLER( mos6526_cnt_w ) { downcast<legacy_mos6526_device *>(device)->cnt_w(state); }
|
|
|
|
READ_LINE_DEVICE_HANDLER( mos6526_sp_r ) { return downcast<legacy_mos6526_device *>(device)->sp_r(); }
|
|
WRITE_LINE_DEVICE_HANDLER( mos6526_sp_w ) { downcast<legacy_mos6526_device *>(device)->sp_w(state); }
|