From 460d66a058c2f998519f78d7cf119730c8101a3c Mon Sep 17 00:00:00 2001 From: OBattler Date: Sun, 8 Oct 2017 22:51:43 +0200 Subject: [PATCH] Readded the call to serial_init() on hard reset, it's needed to initialize the serial ports' timers. --- src/pc.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/pc.c b/src/pc.c index 4eadd309a..3ebc590be 100644 --- a/src/pc.c +++ b/src/pc.c @@ -545,6 +545,10 @@ pc_reset_hard_init(void) fdc_init(); fdc_update_is_nsc(0); floppy_reset(); +#ifndef WALTJE + /* This is needed to initialize the serial timer. */ + serial_init(); +#endif /* Initialize the actual machine and its basic modules. */ machine_init();