We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2bb821c commit 8349543Copy full SHA for 8349543
software/libbase/exception.c
@@ -7,7 +7,7 @@ void isr(void);
7
void exception_handler(unsigned long vect, unsigned long *sp);
8
void exception_handler(unsigned long vect, unsigned long *sp)
9
{
10
- if ((vect & 0xf00) == EXTERNAL_IRQ) {
+ if((vect & 0xf00) == EXTERNAL_IRQ) {
11
isr();
12
} else {
13
/* Unhandled exception */
0 commit comments