mirror of
https://github.com/holub/mame
synced 2025-10-06 09:00:04 +03:00
eispc_twib.cpp: fix build error
This commit is contained in:
parent
530101b53f
commit
ac1b7a7654
@ -249,8 +249,8 @@ void isa8_eistwib_device::device_reset()
|
|||||||
LOG("Installing twib device at %04x\n", base);
|
LOG("Installing twib device at %04x\n", base);
|
||||||
m_isa->install_device(
|
m_isa->install_device(
|
||||||
base, base + 0x0f,
|
base, base + 0x0f,
|
||||||
read8_delegate(FUNC( isa8_eistwib_device::twib_r ), this),
|
read8_delegate(*this, FUNC( isa8_eistwib_device::twib_r )),
|
||||||
write8_delegate(FUNC( isa8_eistwib_device::twib_w ), this));
|
write8_delegate(*this, FUNC( isa8_eistwib_device::twib_w )));
|
||||||
m_installed = true;
|
m_installed = true;
|
||||||
}
|
}
|
||||||
// CD and CTS input are tied to ground
|
// CD and CTS input are tied to ground
|
||||||
|
Loading…
Reference in New Issue
Block a user