summaryrefslogtreecommitdiff
path: root/firmware/system.c
diff options
context:
space:
mode:
Diffstat (limited to 'firmware/system.c')
-rw-r--r--firmware/system.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/firmware/system.c b/firmware/system.c
index dd356bab1f..e6ea543069 100644
--- a/firmware/system.c
+++ b/firmware/system.c
@@ -891,14 +891,13 @@ void UIE (unsigned int pc) /* Unexpected Interrupt or Exception */
891 /* try to restart firmware if ON is pressed */ 891 /* try to restart firmware if ON is pressed */
892#if CONFIG_KEYPAD == PLAYER_PAD 892#if CONFIG_KEYPAD == PLAYER_PAD
893 if (!(PADR & 0x0020)) 893 if (!(PADR & 0x0020))
894 rolo_load("/archos.mod");
895#elif CONFIG_KEYPAD == RECORDER_PAD 894#elif CONFIG_KEYPAD == RECORDER_PAD
896#ifdef HAVE_FMADC 895#ifdef HAVE_FMADC
897 if (!(PCDR & 0x0008)) 896 if (!(PCDR & 0x0008))
898#else 897#else
899 if (!(PBDR & 0x0100)) 898 if (!(PBDR & 0x0100))
900#endif 899#endif
901 rolo_load("/ajbrec.ajz"); 900 system_reboot();
902#endif 901#endif
903 } 902 }
904} 903}