diff options
author | 2012-08-30 14:27:14 +0000 | |
---|---|---|
committer | 2012-08-30 14:27:14 +0000 | |
commit | aa9bbe5371a64a1f16fdcd1faf0e00673e6f8cff (patch) | |
tree | f9346ed25dd2eb34dfe78a4014b47f85dbda32c9 /src/mess/machine/ti99 | |
parent | 689a84ea8ff5bdcba59f3814edb494761139c26b (diff) |
Removed legacy inline_config support and updated devices using it (no whatsnew)
Diffstat (limited to 'src/mess/machine/ti99')
-rw-r--r-- | src/mess/machine/ti99/tn_ide.c | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/src/mess/machine/ti99/tn_ide.c b/src/mess/machine/ti99/tn_ide.c index 720f8689cd2..558fe5f76e8 100644 --- a/src/mess/machine/ti99/tn_ide.c +++ b/src/mess/machine/ti99/tn_ide.c @@ -334,9 +334,16 @@ static const rtc65271_interface ide_rtc_cfg = DEVCB_DEVICE_LINE_MEMBER(DEVICE_SELF_OWNER, nouspikel_ide_interface_device, clock_interrupt_callback) }; +static const ide_config ide_intf = +{ + ide_interrupt_callback, + NULL, + 0 +}; + MACHINE_CONFIG_FRAGMENT( tn_ide ) MCFG_RTC65271_ADD( "ide_rtc", ide_rtc_cfg ) - MCFG_IDE_CONTROLLER_ADD( "ide", ide_interrupt_callback, ide_image_devices, "hdd", NULL, false) // see idectrl.c + MCFG_IDE_CONTROLLER_ADD( "ide", ide_intf, ide_image_devices, "hdd", NULL, false) // see idectrl.c // MCFG_IDE_CONTROLLER_REGIONS(":peribox:idehd0:drive", NULL) MACHINE_CONFIG_END |