summaryrefslogtreecommitdiffstatshomepage
path: root/src/mess/machine/cpcexp.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/mess/machine/cpcexp.c')
-rw-r--r--src/mess/machine/cpcexp.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/mess/machine/cpcexp.c b/src/mess/machine/cpcexp.c
index 45af07348ed..4d43df10bbd 100644
--- a/src/mess/machine/cpcexp.c
+++ b/src/mess/machine/cpcexp.c
@@ -40,7 +40,7 @@ device_cpc_expansion_card_interface::~device_cpc_expansion_card_interface()
//**************************************************************************
cpc_expansion_slot_device::cpc_expansion_slot_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock) :
- device_t(mconfig, CPC_EXPANSION_SLOT, "Amstrad CPC expansion port", tag, owner, clock),
+ device_t(mconfig, CPC_EXPANSION_SLOT, "Amstrad CPC expansion port", tag, owner, clock),
device_slot_interface(mconfig, *this)
{
}
@@ -67,11 +67,11 @@ void cpc_expansion_slot_device::device_config_complete()
// or initialize to defaults if none provided
else
{
- memset(&m_out_irq_cb, 0, sizeof(m_out_irq_cb));
- memset(&m_out_nmi_cb, 0, sizeof(m_out_nmi_cb));
- memset(&m_out_reset_cb, 0, sizeof(m_out_reset_cb));
- memset(&m_out_romdis_cb, 0, sizeof(m_out_romdis_cb));
- memset(&m_out_romen_cb, 0, sizeof(m_out_romen_cb));
+ memset(&m_out_irq_cb, 0, sizeof(m_out_irq_cb));
+ memset(&m_out_nmi_cb, 0, sizeof(m_out_nmi_cb));
+ memset(&m_out_reset_cb, 0, sizeof(m_out_reset_cb));
+ memset(&m_out_romdis_cb, 0, sizeof(m_out_romdis_cb));
+ memset(&m_out_romen_cb, 0, sizeof(m_out_romen_cb));
}
}