diff options
Diffstat (limited to 'ports')
-rw-r--r-- | ports/ARM7-AT91SAM7X/GCC/chcore.c | 2 | ||||
-rw-r--r-- | ports/ARM7-AT91SAM7X/GCC/crt0.s | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/ports/ARM7-AT91SAM7X/GCC/chcore.c b/ports/ARM7-AT91SAM7X/GCC/chcore.c index 795fcd792..80004fb25 100644 --- a/ports/ARM7-AT91SAM7X/GCC/chcore.c +++ b/ports/ARM7-AT91SAM7X/GCC/chcore.c @@ -138,7 +138,7 @@ __attribute__((naked, weak)) void IrqCommon(void) {
register BOOL b asm("r0");
-// VICVectAddr = 0;
+ AT91C_BASE_AIC->AIC_EOICR = (AT91_REG)AT91C_BASE_AIC;
b = chSchRescRequiredI();
#ifdef THUMB
asm(".p2align 2,, \n\t" \
diff --git a/ports/ARM7-AT91SAM7X/GCC/crt0.s b/ports/ARM7-AT91SAM7X/GCC/crt0.s index a4fd53db3..add484686 100644 --- a/ports/ARM7-AT91SAM7X/GCC/crt0.s +++ b/ports/ARM7-AT91SAM7X/GCC/crt0.s @@ -18,7 +18,7 @@ */
/*
- * Generic ARM startup file for ChibiOS/RT.
+ * Generic ARM startup file for ChibiOS/RT (Atmel variant).
*/
.extern _main
|