summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/atarittl.c
diff options
context:
space:
mode:
author Fabio Priuli <etabeta78@users.noreply.github.com>2014-10-13 05:46:51 +0000
committer Fabio Priuli <etabeta78@users.noreply.github.com>2014-10-13 05:46:51 +0000
commit76ecd996bf52813353cb49e08c9539ff4a0025dc (patch)
tree03d25f96c5f4895a4ad4be4cd977fb22621a126a /src/mame/drivers/atarittl.c
parent088936a672d5f1f347a26fc1c4eb485ea71b686b (diff)
fixfreq: converted to use inline configs. nw.
Diffstat (limited to 'src/mame/drivers/atarittl.c')
-rw-r--r--src/mame/drivers/atarittl.c15
1 files changed, 6 insertions, 9 deletions
diff --git a/src/mame/drivers/atarittl.c b/src/mame/drivers/atarittl.c
index 61b56f1a318..fe872309e8a 100644
--- a/src/mame/drivers/atarittl.c
+++ b/src/mame/drivers/atarittl.c
@@ -76,14 +76,6 @@
#define VBEND (16)
#define HRES_MULT (1)
-
-fixedfreq_interface fixedfreq_mode_atarikee = {
- MASTER_CLOCK,
- H_TOTAL-67,H_TOTAL-40,H_TOTAL-8,H_TOTAL,
- V_TOTAL-22,V_TOTAL-19,V_TOTAL-12,V_TOTAL,
- 1, /* non-interlaced */
- 0.30
-};
// end
@@ -150,7 +142,12 @@ static MACHINE_CONFIG_START( atarikee, atarikee_state )
MCFG_NETLIST_SETUP(atarikee)
/* video hardware */
- MCFG_FIXFREQ_ADD("fixfreq", "screen", fixedfreq_mode_atarikee)
+ MCFG_FIXFREQ_ADD("fixfreq", "screen")
+ MCFG_FIXFREQ_MONITOR_CLOCK(MASTER_CLOCK)
+ MCFG_FIXFREQ_HORZ_PARAMS(H_TOTAL-67,H_TOTAL-40,H_TOTAL-8,H_TOTAL)
+ MCFG_FIXFREQ_VERT_PARAMS(V_TOTAL-22,V_TOTAL-19,V_TOTAL-12,V_TOTAL)
+ MCFG_FIXFREQ_FIELDCOUNT(1)
+ MCFG_FIXFREQ_SYNC_THRESHOLD(0.30)
MACHINE_CONFIG_END