mirror of
https://github.com/holub/mame
synced 2025-04-24 01:11:11 +03:00
tekram_dc820.cpp: Identify some interrupts (nw)
i82355: Device name correction (nw)
This commit is contained in:
parent
9b3a449790
commit
d29903e16c
@ -94,6 +94,7 @@ static void tekram_scsi_devices(device_slot_interface &device)
|
||||
void tekram_eisa_scsi_device::scsic_config(device_t *device)
|
||||
{
|
||||
device->set_clock(40_MHz_XTAL);
|
||||
device->irq_handler_cb().set(m_mpu, FUNC(i80186_cpu_device::int3_w));
|
||||
}
|
||||
|
||||
void tekram_eisa_scsi_device::scsi_add(machine_config &config)
|
||||
@ -117,7 +118,8 @@ void tekram_dc320b_device::device_add_mconfig(machine_config &config)
|
||||
|
||||
//EEPROM_93C46_16BIT(config, m_eeprom);
|
||||
|
||||
I82355(config, "bmic", 0);
|
||||
i82355_device &bmic(I82355(config, "bmic", 0));
|
||||
bmic.lint_callback().set(m_mpu, FUNC(i80186_cpu_device::int2_w));
|
||||
|
||||
scsi_add(config);
|
||||
|
||||
@ -131,7 +133,8 @@ void tekram_dc320e_device::device_add_mconfig(machine_config &config)
|
||||
|
||||
//EEPROM_93C46_16BIT(config, m_eeprom);
|
||||
|
||||
I82355(config, "bmic", 0);
|
||||
i82355_device &bmic(I82355(config, "bmic", 0));
|
||||
bmic.lint_callback().set(m_mpu, FUNC(i80186_cpu_device::int2_w));
|
||||
|
||||
scsi_add(config);
|
||||
|
||||
@ -145,7 +148,8 @@ void tekram_dc820_device::device_add_mconfig(machine_config &config)
|
||||
|
||||
//EEPROM_93C46_16BIT(config, m_eeprom);
|
||||
|
||||
I82355(config, "bmic", 0);
|
||||
i82355_device &bmic(I82355(config, "bmic", 0));
|
||||
bmic.lint_callback().set(m_mpu, FUNC(i80186_cpu_device::int2_w));
|
||||
|
||||
scsi_add(config);
|
||||
|
||||
@ -159,7 +163,8 @@ void tekram_dc820b_device::device_add_mconfig(machine_config &config)
|
||||
|
||||
//EEPROM_93C46_16BIT(config, m_eeprom);
|
||||
|
||||
I82355(config, "bmic", 0);
|
||||
i82355_device &bmic(I82355(config, "bmic", 0));
|
||||
bmic.lint_callback().set(m_mpu, FUNC(i80186_cpu_device::int2_w));
|
||||
|
||||
scsi_add(config);
|
||||
|
||||
|
@ -2,7 +2,7 @@
|
||||
// copyright-holders:AJR
|
||||
/**********************************************************************
|
||||
|
||||
Intel 82355 Bus Master Interface Chip (BMIC)
|
||||
Intel 82355 Bus Master Interface Controller (BMIC)
|
||||
|
||||
Currently very little of this device is emulated besides storing
|
||||
data that the local processor writes to it. Its interface will
|
||||
|
@ -2,7 +2,7 @@
|
||||
// copyright-holders:AJR
|
||||
/**********************************************************************
|
||||
|
||||
Intel 82355 Bus Master Interface Chip (BMIC)
|
||||
Intel 82355 Bus Master Interface Controller (BMIC)
|
||||
|
||||
**********************************************************************/
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user