summaryrefslogtreecommitdiff
path: root/firmware
diff options
context:
space:
mode:
Diffstat (limited to 'firmware')
-rw-r--r--firmware/system.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/firmware/system.c b/firmware/system.c
index 9699fe8559..bb7923792d 100644
--- a/firmware/system.c
+++ b/firmware/system.c
@@ -413,7 +413,7 @@ static const char* const irqname[] = {
413 "UCHANTXUNDER","UCHANTXEMPTY","PDIR3UNOV","IEC1PARERR", 413 "UCHANTXUNDER","UCHANTXEMPTY","PDIR3UNOV","IEC1PARERR",
414 "IEC1VALNOGOOD","IEC1CNEW","EBUTXRESYN","EBUTXUNOV", 414 "IEC1VALNOGOOD","IEC1CNEW","EBUTXRESYN","EBUTXUNOV",
415 "IIS2TXRESYN","IIS2TXUNOV","IIS1TXRESYN","IIS1TXUNOV", 415 "IIS2TXRESYN","IIS2TXUNOV","IIS1TXRESYN","IIS1TXUNOV",
416 "GPIO0","GPI1","GPI2","GPI3","GPI4","GPI5","GPI6","GPI7", 416 "GPI0","GPI1","GPI2","GPI3","GPI4","GPI5","GPI6","GPI7",
417 "","","","","","","","SOFTINT0", 417 "","","","","","","","SOFTINT0",
418 "SOFTINT1","SOFTINT2","SOFTINT3","", 418 "SOFTINT1","SOFTINT2","SOFTINT3","",
419 "","CDROMCRCERR","CDROMNOSYNC","CDROMILSYNC", 419 "","CDROMCRCERR","CDROMNOSYNC","CDROMILSYNC",
@@ -600,6 +600,10 @@ void system_init(void)
600 what'll be the most useful for most things which the main thread 600 what'll be the most useful for most things which the main thread
601 will do. */ 601 will do. */
602 coldfire_set_macsr(EMAC_FRACTIONAL | EMAC_SATURATE | EMAC_ROUND); 602 coldfire_set_macsr(EMAC_FRACTIONAL | EMAC_SATURATE | EMAC_ROUND);
603
604 /* Set INTBASE and SPURVEC */
605 INTBASE = 64;
606 SPURVEC = 24;
603} 607}
604 608
605void system_reboot (void) 609void system_reboot (void)