X-Git-Url: http://wien.tomnetworks.com/gitweb/?p=ppcskel.git;a=blobdiff_plain;f=exception.c;h=f42b78be2da341bf1f7eeef5aa477967bc82394b;hp=39a1654e6cfb6e77b1efbf6168b920670567aefd;hb=HEAD;hpb=3a17a5742283d2510b6bdcf42dcb76cdb66d3770 diff --git a/exception.c b/exception.c index 39a1654..f42b78b 100644 --- a/exception.c +++ b/exception.c @@ -3,6 +3,8 @@ Requires mini. Copyright (C) 2008 Segher Boessenkool +Copyright (C) 2009 Bernhard Urban +Copyright (C) 2009 Sebastian Falbesoner # This code is licensed to you under the terms of the GNU GPL, version 2; # see file COPYING or http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt @@ -26,7 +28,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 +58,6 @@ void exception_handler(int exception) } irq_restore(cookie); - _CPU_ISR_Enable(); //wtf } void exception_init(void)