Enabled logging of all CPU exceptions.

This commit is contained in:
OBattler
2016-08-09 02:54:10 +02:00
parent f43a317d93
commit a098bc2338
3 changed files with 13 additions and 13 deletions

View File

@@ -145,25 +145,25 @@ void x86_doabrt(int x86_abrt)
}
void x86gpf(char *s, uint16_t error)
{
// pclog("GPF %04X : %s\n", error, s);
pclog("GPF %04X : %s\n", error, s);
abrt = ABRT_GPF;
abrt_error = error;
}
void x86ss(char *s, uint16_t error)
{
// pclog("SS %04X\n", error);
pclog("SS %04X\n", error);
abrt = ABRT_SS;
abrt_error = error;
}
void x86ts(char *s, uint16_t error)
{
// pclog("TS %04X\n", error);
pclog("TS %04X\n", error);
abrt = ABRT_TS;
abrt_error = error;
}
void x86np(char *s, uint16_t error)
{
// pclog("NP %04X : %s\n", error, s);
pclog("NP %04X : %s\n", error, s);
abrt = ABRT_NP;
abrt_error = error;
}