summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/bus
diff options
context:
space:
mode:
author mooglyguy <therealmogminer@gmail.com>2018-06-08 19:27:34 +0200
committer mooglyguy <therealmogminer@gmail.com>2018-06-08 19:27:56 +0200
commit0b156d28896ac6deeb2027818ead4f022cf25f07 (patch)
treef8b5829c7a4c169e11c4bca7b3cd22f602d75df8 /src/devices/bus
parent1dd98cd6ff2c27d98fc6d087f309ffab5a9ea7d0 (diff)
Separate reel and stepper devices to an extent, cleaned up use of custom mcfgs for them, nw
Diffstat (limited to 'src/devices/bus')
-rw-r--r--src/devices/bus/centronics/epson_lx810l.cpp10
1 files changed, 2 insertions, 8 deletions
diff --git a/src/devices/bus/centronics/epson_lx810l.cpp b/src/devices/bus/centronics/epson_lx810l.cpp
index c85821e6cb5..db774c2305f 100644
--- a/src/devices/bus/centronics/epson_lx810l.cpp
+++ b/src/devices/bus/centronics/epson_lx810l.cpp
@@ -161,14 +161,8 @@ MACHINE_CONFIG_START(epson_lx810l_device::device_add_mconfig)
/* 256-bit eeprom */
MCFG_DEVICE_ADD("eeprom", EEPROM_SERIAL_93C06_16BIT)
- /* steppers */
- MCFG_STEPPER_ADD("pf_stepper")
- MCFG_STEPPER_REEL_TYPE(NOT_A_REEL)
- MCFG_STEPPER_INIT_PHASE(4)
-
- MCFG_STEPPER_ADD("cr_stepper")
- MCFG_STEPPER_REEL_TYPE(NOT_A_REEL)
- MCFG_STEPPER_INIT_PHASE(2)
+ STEPPER(config, "pf_stepper", (uint8_t)4);
+ STEPPER(config, "cr_stepper", (uint8_t)2);
MACHINE_CONFIG_END