summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
author AJR <ajrhacker@users.noreply.github.com>2018-09-15 18:49:10 -0400
committer AJR <ajrhacker@users.noreply.github.com>2018-09-15 18:49:10 -0400
commit1f3708ba8a2b9a683321615e63dba4fe085a6375 (patch)
tree0f90f6d3f02c1eb323cf18af393f5fcf4bfcbe5e
parent99c9bc0cca3cf4facdcd65ce736bd7edcd67f1f8 (diff)
vpoker: 6809 type identification (nw)
-rw-r--r--src/mame/drivers/vpoker.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/drivers/vpoker.cpp b/src/mame/drivers/vpoker.cpp
index 756e0190842..773d2548ccf 100644
--- a/src/mame/drivers/vpoker.cpp
+++ b/src/mame/drivers/vpoker.cpp
@@ -636,7 +636,7 @@ WRITE_LINE_MEMBER(vpoker_state::ptm_irq)
MACHINE_CONFIG_START(vpoker_state::vpoker)
/* basic machine hardware */
- MCFG_DEVICE_ADD("maincpu",M6809,XTAL(4'000'000))
+ MCFG_DEVICE_ADD("maincpu", MC6809, XTAL(4'000'000))
MCFG_DEVICE_PROGRAM_MAP(main_map)
MCFG_DEVICE_VBLANK_INT_DRIVER("screen", vpoker_state, irq0_line_hold) //irq0 valid too
@@ -655,7 +655,7 @@ MACHINE_CONFIG_START(vpoker_state::vpoker)
MCFG_PALETTE_ADD_3BIT_GBR("palette")
/* 6840 PTM */
- ptm6840_device &ptm(PTM6840(config, "6840ptm", XTAL(4'000'000)));
+ ptm6840_device &ptm(PTM6840(config, "6840ptm", XTAL(4'000'000) / 4));
ptm.set_external_clocks(0, 0, 0);
ptm.irq_callback().set(FUNC(vpoker_state::ptm_irq));