simple changes to the stack
[ppcskel.git] / exception.c
index 39a1654e6cfb6e77b1efbf6168b920670567aefd..c1ccc9584bc0d40e27ed9343e49a7c51fe8fa59d 100644 (file)
@@ -26,7 +26,7 @@ void exception_handler(int exception)
 
        // check if exception happened due to the decrementer
        else if (exception == 0x900) {
-               printf("\nDecrementer exception occured - who cares?\n");
+               //printf("\nDecrementer exception occured - who cares?\n");
        }
 
        else {
@@ -56,7 +56,6 @@ void exception_handler(int exception)
        }
 
        irq_restore(cookie);
-       _CPU_ISR_Enable(); //wtf
 }
 
 void exception_init(void)