mirror of
https://github.com/holub/mame
synced 2025-07-01 16:19:38 +03:00
Forgot to remove some dead code. (nw)
This commit is contained in:
parent
3f47f066b2
commit
df0d034f78
@ -98,8 +98,10 @@ void bfmdm01_device::device_start()
|
|||||||
save_item(NAME(m_xcounter));
|
save_item(NAME(m_xcounter));
|
||||||
save_item(NAME(m_busy));
|
save_item(NAME(m_busy));
|
||||||
save_item(NAME(m_comdata));
|
save_item(NAME(m_comdata));
|
||||||
|
|
||||||
for (int i = 0; i < 65; i++)
|
for (int i = 0; i < 65; i++)
|
||||||
save_item(NAME(m_segbuffer), i);
|
save_item(NAME(m_segbuffer), i);
|
||||||
|
|
||||||
for (int i = 0; i < DM_BYTESPERROW; i++)
|
for (int i = 0; i < DM_BYTESPERROW; i++)
|
||||||
save_item(NAME(m_scanline), i);
|
save_item(NAME(m_scanline), i);
|
||||||
}
|
}
|
||||||
@ -118,15 +120,6 @@ void bfmdm01_device::device_reset()
|
|||||||
m_busy_func(machine(), m_busy);
|
m_busy_func(machine(), m_busy);
|
||||||
}
|
}
|
||||||
|
|
||||||
/* void BFM_dm01_config(running_machine &machine, const bfmdm01_interface *intf)
|
|
||||||
{
|
|
||||||
assert_always(machine.phase() == MACHINE_PHASE_INIT, "Can only call BFM_dm01_config at init time!");
|
|
||||||
assert_always(intf, "BFM_dm01_config called with an invalid interface!");
|
|
||||||
m_intf = intf;
|
|
||||||
BFM_dm01_reset(machine);
|
|
||||||
|
|
||||||
} */
|
|
||||||
|
|
||||||
///////////////////////////////////////////////////////////////////////////
|
///////////////////////////////////////////////////////////////////////////
|
||||||
|
|
||||||
int bfmdm01_device::read_data(void)
|
int bfmdm01_device::read_data(void)
|
||||||
@ -281,13 +274,6 @@ void bfmdm01_device::writedata(UINT8 data)
|
|||||||
machine().device("matrix")->execute().set_input_line(M6809_IRQ_LINE, HOLD_LINE ); // trigger IRQ
|
machine().device("matrix")->execute().set_input_line(M6809_IRQ_LINE, HOLD_LINE ); // trigger IRQ
|
||||||
}
|
}
|
||||||
|
|
||||||
///////////////////////////////////////////////////////////////////////////
|
|
||||||
|
|
||||||
//INTERRUPT_GEN_MEMBER( bfmdm01_device::nmi_line_assert )
|
|
||||||
//{
|
|
||||||
//device->execute().set_input_line(INPUT_LINE_NMI, ASSERT_LINE );
|
|
||||||
//}
|
|
||||||
|
|
||||||
///////////////////////////////////////////////////////////////////////////
|
///////////////////////////////////////////////////////////////////////////
|
||||||
int bfmdm01_device::busy(void)
|
int bfmdm01_device::busy(void)
|
||||||
{
|
{
|
||||||
|
@ -58,7 +58,6 @@ extern const device_type BF_DM01;
|
|||||||
|
|
||||||
ADDRESS_MAP_EXTERN( bfm_dm01_memmap,8 );
|
ADDRESS_MAP_EXTERN( bfm_dm01_memmap,8 );
|
||||||
|
|
||||||
//void BFM_dm01_config(running_machine &machine, const bfmdm01_interface *intf);
|
|
||||||
|
|
||||||
#define MCFG_DM01_ADD(_tag, _interface) \
|
#define MCFG_DM01_ADD(_tag, _interface) \
|
||||||
MCFG_DEVICE_ADD(_tag, BF_DM01, 0) \
|
MCFG_DEVICE_ADD(_tag, BF_DM01, 0) \
|
||||||
|
Loading…
Reference in New Issue
Block a user