From e3651391ae46e948979027b4571777bea9497db8 Mon Sep 17 00:00:00 2001 From: OBattler Date: Thu, 17 Sep 2020 22:49:47 +0200 Subject: [PATCH] Fixed the reset value of Power Management register 0 on the PC87309 Super I/O chip, should fix the parallel port. --- src/sio/sio_pc87309.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/sio/sio_pc87309.c b/src/sio/sio_pc87309.c index ecbc76de7..d1af15651 100644 --- a/src/sio/sio_pc87309.c +++ b/src/sio/sio_pc87309.c @@ -420,7 +420,7 @@ pc87309_reset(pc87309_t *dev) dev->regs[0x12] = 0x30; dev->regs[0x19] = 0xEF; - dev->pm[0] = 0xe9; + dev->pm[0] = 0x79; dev->pm[4] = 0x0e; dev->pm_base = 0xffff;