From 1a4d1f32f89a2c0c7181988d460c0eda89a1e465 Mon Sep 17 00:00:00 2001 From: OBattler Date: Mon, 11 Feb 2019 01:36:22 +0100 Subject: [PATCH] The Schneider EuroPC now initializes the PIT DRAM refresh timer. --- src/machine/m_europc.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/machine/m_europc.c b/src/machine/m_europc.c index 8977f4ff8..9986ddce6 100644 --- a/src/machine/m_europc.c +++ b/src/machine/m_europc.c @@ -68,7 +68,7 @@ * * WARNING THIS IS A WORK-IN-PROGRESS MODULE. USE AT OWN RISK. * - * Version: @(#)europc.c 1.0.9 2018/11/01 + * Version: @(#)europc.c 1.0.10 2019/02/11 * * Author: Fred N. van Kempen, * @@ -121,6 +121,7 @@ #include "../io.h" #include "../nmi.h" #include "../mem.h" +#include "../pit.h" #include "../rom.h" #include "../device.h" #include "../nvr.h" @@ -733,6 +734,8 @@ void machine_europc_init(const machine_t *model) { machine_common_init(model); + pit_set_out_func(&pit, 1, pit_refresh_timer_xt); + nmi_init(); /* Clear the machine state. */