From ecdce7523f363adc856fef5711d6bc8f8e2828b3 Mon Sep 17 00:00:00 2001 From: OBattler Date: Wed, 10 Aug 2016 02:04:44 +0200 Subject: [PATCH] Temporarily disabled general protection faults. --- src/x86seg.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/x86seg.c b/src/x86seg.c index eb2aa079f..ce6dc32a4 100644 --- a/src/x86seg.c +++ b/src/x86seg.c @@ -145,6 +145,7 @@ void x86_doabrt(int x86_abrt) } void x86gpf(char *s, uint16_t error) { + return; pclog("GPF %04X : %s\n", error, s); abrt = ABRT_GPF; abrt_error = error;