style
This commit is contained in:
parent
2bb821c571
commit
8349543732
|
@ -7,7 +7,7 @@ void isr(void);
|
||||||
void exception_handler(unsigned long vect, unsigned long *sp);
|
void exception_handler(unsigned long vect, unsigned long *sp);
|
||||||
void exception_handler(unsigned long vect, unsigned long *sp)
|
void exception_handler(unsigned long vect, unsigned long *sp)
|
||||||
{
|
{
|
||||||
if ((vect & 0xf00) == EXTERNAL_IRQ) {
|
if((vect & 0xf00) == EXTERNAL_IRQ) {
|
||||||
isr();
|
isr();
|
||||||
} else {
|
} else {
|
||||||
/* Unhandled exception */
|
/* Unhandled exception */
|
||||||
|
|
Loading…
Reference in New Issue