From 9c48647baa3fe1bf1defc14d81419cdaf12d985b Mon Sep 17 00:00:00 2001 From: theStack Date: Wed, 2 Sep 2009 16:49:36 +0200 Subject: [PATCH] added (empty) handling for decrementer exception --- exception.c | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/exception.c b/exception.c index 44055f1..4a9eef3 100644 --- a/exception.c +++ b/exception.c @@ -40,6 +40,12 @@ void exception_handler(int exception) return; } + // check if exception happened due to the decrementer + if (exception == 0x900) { + printf("\nDecrementer exception occured - who cares?\n"); + return; + } + u32 *x; u32 i; -- 2.25.1