diff options
| author | 2015-06-23 15:46:43 +0200 | |
|---|---|---|
| committer | 2015-06-23 15:46:43 +0200 | |
| commit | 66fdd28b83090a63d7c01ac287c8e02b8ca7dc63 (patch) | |
| tree | f569bd767c208fbe16eac38ddd65ce628c6ffee5 /src | |
| parent | 50071ab8314d68d2b9f80e3aa89d49a45958b847 (diff) | |
missed one
Diffstat (limited to 'src')
| -rw-r--r-- | src/emu/machine/wd_fdc.c | 4 | ||||
| -rw-r--r-- | src/emu/machine/wd_fdc.h | 5 |
2 files changed, 5 insertions, 4 deletions
diff --git a/src/emu/machine/wd_fdc.c b/src/emu/machine/wd_fdc.c index 755b8ca16be..06d6df35f92 100644 --- a/src/emu/machine/wd_fdc.c +++ b/src/emu/machine/wd_fdc.c @@ -10,7 +10,7 @@ const device_type FD1791 = &device_creator<fd1791_t>; const device_type FD1792 = &device_creator<fd1792_t>; const device_type FD1793 = &device_creator<fd1793_t>; const device_type KR1818VG93 = &device_creator<kr1818vg93_t>; -const device_type FD1794x = &device_creator<fd1794_t>; +const device_type FD1794 = &device_creator<fd1794_t>; const device_type FD1795 = &device_creator<fd1795_t>; const device_type FD1797 = &device_creator<fd1797_t>; const device_type MB8866 = &device_creator<mb8866_t>; @@ -2503,7 +2503,7 @@ kr1818vg93_t::kr1818vg93_t(const machine_config &mconfig, const char *tag, devic nonsticky_immint = true; } -fd1794_t::fd1794_t(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock) : wd_fdc_analog_t(mconfig, FD1794x, "FD1794", tag, owner, clock, "fd1794", __FILE__) +fd1794_t::fd1794_t(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock) : wd_fdc_analog_t(mconfig, FD1794, "FD1794", tag, owner, clock, "fd1794", __FILE__) { step_times = fd179x_step_times; delay_register_commit = 4; diff --git a/src/emu/machine/wd_fdc.h b/src/emu/machine/wd_fdc.h index fec55348f42..100d473f2ac 100644 --- a/src/emu/machine/wd_fdc.h +++ b/src/emu/machine/wd_fdc.h @@ -62,8 +62,8 @@ #define MCFG_KR1818VG93_ADD(_tag, _clock) \ MCFG_DEVICE_ADD(_tag, KR1818VG93, _clock) -#define MCFG_FD1794x_ADD(_tag, _clock) \ - MCFG_DEVICE_ADD(_tag, FD1794x, _clock) +#define MCFG_FD1794_ADD(_tag, _clock) \ + MCFG_DEVICE_ADD(_tag, FD1794, _clock) #define MCFG_FD1795_ADD(_tag, _clock) \ MCFG_DEVICE_ADD(_tag, FD1795, _clock) @@ -656,6 +656,7 @@ extern const device_type FD1781; extern const device_type FD1791; extern const device_type FD1792; extern const device_type FD1793; +extern const device_type FD1794; extern const device_type KR1818VG93; extern const device_type FD1795; extern const device_type FD1797; |
