summaryrefslogtreecommitdiffstats
path: root/src/mame/drivers/qvt201.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/qvt201.cpp')
-rw-r--r--src/mame/drivers/qvt201.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/mame/drivers/qvt201.cpp b/src/mame/drivers/qvt201.cpp
index 39c1592a1e9..fcc6255fbe2 100644
--- a/src/mame/drivers/qvt201.cpp
+++ b/src/mame/drivers/qvt201.cpp
@@ -78,14 +78,14 @@ static INPUT_PORTS_START( qvt201 )
INPUT_PORTS_END
MACHINE_CONFIG_START(qvt201_state::qvt201)
- MCFG_CPU_ADD("maincpu", Z80, XTAL(3'686'400))
- MCFG_CPU_PROGRAM_MAP(mem_map) // IORQ is not used at all
+ MCFG_DEVICE_ADD("maincpu", Z80, XTAL(3'686'400))
+ MCFG_DEVICE_PROGRAM_MAP(mem_map) // IORQ is not used at all
MCFG_INPUT_MERGER_ANY_HIGH("mainint") // open collector
MCFG_INPUT_MERGER_OUTPUT_HANDLER(INPUTLINE("maincpu", 0))
MCFG_DEVICE_ADD("duart", SCN2681, XTAL(3'686'400)) // XTAL not directly connected
- MCFG_MC68681_IRQ_CALLBACK(DEVWRITELINE("mainint", input_merger_device, in_w<1>))
+ MCFG_MC68681_IRQ_CALLBACK(WRITELINE("mainint", input_merger_device, in_w<1>))
MCFG_NVRAM_ADD_0FILL("nvram")
@@ -96,7 +96,7 @@ MACHINE_CONFIG_START(qvt201_state::qvt201)
MCFG_DEVICE_ADD("crtc", SCN2672, XTAL(48'654'000) / 30)
MCFG_SCN2672_CHARACTER_WIDTH(10) // 9 in 132-column mode
- MCFG_SCN2672_INTR_CALLBACK(DEVWRITELINE("mainint", input_merger_device, in_w<0>))
+ MCFG_SCN2672_INTR_CALLBACK(WRITELINE("mainint", input_merger_device, in_w<0>))
MCFG_VIDEO_SET_SCREEN("screen")
MACHINE_CONFIG_END