From 593b3adcfe8263a7b7fc61acd0c034b594931365 Mon Sep 17 00:00:00 2001 From: OBattler Date: Wed, 6 Jan 2021 06:09:48 +0100 Subject: [PATCH] Keyboard controller reset is now hard reset, fixes CTRL+ALT+DEL causing the SiS 471 AMI 486 clone to hang in SMM. --- src/device/keyboard_at.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/device/keyboard_at.c b/src/device/keyboard_at.c index af2caccbd..74563cf8f 100644 --- a/src/device/keyboard_at.c +++ b/src/device/keyboard_at.c @@ -1059,7 +1059,7 @@ write_output(atkbd_t *dev, uint8_t val) if ((dev->output_port ^ val) & 0x01) { /*Reset*/ if (! (val & 0x01)) { /* Pin 0 selected. */ - softresetx86(); /*Pulse reset!*/ + resetx86(); /*Pulse reset!*/ cpu_set_edx(); } }