diff options
| author | 2013-12-24 07:24:51 +0000 | |
|---|---|---|
| committer | 2013-12-24 07:24:51 +0000 | |
| commit | ca546caa6e2932e504d020fb80b6cc0e8665cea9 (patch) | |
| tree | aa9f12d46b8088c24d1ff5322d0808c0aacce42c /src/mess/machine/p1_fdc.c | |
| parent | efaac9818f3f4511f7ad5201fcfe3bbd22c007a4 (diff) | |
Cleanups and version bumpmame0152
Diffstat (limited to 'src/mess/machine/p1_fdc.c')
| -rw-r--r-- | src/mess/machine/p1_fdc.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mess/machine/p1_fdc.c b/src/mess/machine/p1_fdc.c index ef24a4de48f..6035b677463 100644 --- a/src/mess/machine/p1_fdc.c +++ b/src/mess/machine/p1_fdc.c @@ -134,7 +134,7 @@ void p1_fdc_device::p1_wd17xx_aux_w(int data) if(!BIT(data, 6)) m_fdc->reset(); - + m_fdc->set_floppy(floppy); floppy->ss_w(BIT(data, 4)); @@ -196,7 +196,7 @@ void p1_fdc_device::device_start() { set_isa_device(); m_isa->install_rom(this, 0xe0000, 0xe07ff, 0, 0, "XXX", "p1_fdc"); - m_isa->install_device(0x00c0, 0x00c3, 0, 0, + m_isa->install_device(0x00c0, 0x00c3, 0, 0, READ8_DEVICE_DELEGATE(m_fdc, fd1793_t, read), WRITE8_DEVICE_DELEGATE(m_fdc, fd1793_t, write) ); m_isa->install_device(this, 0x00c4, 0x00c7, 0, 0, FUNC(p1_FDC_r), FUNC(p1_FDC_w) ); |
