mirror of
https://github.com/holub/mame
synced 2025-07-06 02:18:09 +03:00
Fix problem with iteagle caused by pci change (nw)
This commit is contained in:
parent
3aa1d1e8e7
commit
552eea4599
@ -69,6 +69,10 @@ void ide_pci_device::device_start()
|
|||||||
{
|
{
|
||||||
pci_device::device_start();
|
pci_device::device_start();
|
||||||
|
|
||||||
|
// always keep this device memory ranges active
|
||||||
|
command |= 3;
|
||||||
|
command_mask &= ~3;
|
||||||
|
|
||||||
add_map(8, M_IO, FUNC(ide_pci_device::chan1_data_command_map));
|
add_map(8, M_IO, FUNC(ide_pci_device::chan1_data_command_map));
|
||||||
add_map(4, M_IO, FUNC(ide_pci_device::chan1_control_map));
|
add_map(4, M_IO, FUNC(ide_pci_device::chan1_control_map));
|
||||||
add_map(8, M_IO, FUNC(ide_pci_device::chan2_data_command_map));
|
add_map(8, M_IO, FUNC(ide_pci_device::chan2_data_command_map));
|
||||||
|
Loading…
Reference in New Issue
Block a user