Thank you to anyone who has already donated - your generous donations helped make three months of treatment possible.
My brother Nate continues to fight stage IV Hodgkin's lymphoma. He's just 31, with a wife and baby girl. They have no active income (since he's been unable to return to work), no insurance, and cannot afford the treatment he needs. Nate and his family need your help. Please consider a donation, every dollar helps. Thanks.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 |
diff --git a/firmware/target/arm/system-arm.c b/firmware/target/arm/system-arm.c index 01d2ba6..5b47fe5 100644 void __attribute__((noreturn)) UIE(unsigned int pc, unsigned int num) } /* num == 1 || num == 2 // prefetch/data abort */ #endif /* !defined(CPU_ARM7TDMI */ + int lr; + asm volatile( + "mrs r0, cpsr \n" /* save current mode */ + "mrs r1, spsr \n" /* load spsr */ + "msr cpsr_c, r1 \n" + "mov %0, lr \n" /* read lr from spsr */ + "msr cpsr_c, r0 \n" + : "=r"(lr) : : "r0", "r1" + ); + lcd_putsf(0, line++, "LR: 0x%8x", lr); + lcd_update(); disable_interrupt(IRQ_FIQ_STATUS); |