summaryrefslogtreecommitdiff
path: root/firmware/system.c
diff options
context:
space:
mode:
Diffstat (limited to 'firmware/system.c')
-rw-r--r--firmware/system.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/firmware/system.c b/firmware/system.c
index 7eaefb1d77..8bdd821e60 100644
--- a/firmware/system.c
+++ b/firmware/system.c
@@ -516,6 +516,10 @@ void system_init(void)
516 "movclr.l %%acc2, %%d0\n\t" 516 "movclr.l %%acc2, %%d0\n\t"
517 "movclr.l %%acc3, %%d0\n\t" 517 "movclr.l %%acc3, %%d0\n\t"
518 : : : "d0"); 518 : : : "d0");
519 /* Set EMAC unit to saturating and rounding fractional mode, since that's
520 what'll be the most useful for most things which the main thread
521 will do. */
522 coldfire_set_macsr(EMAC_FRACTIONAL | EMAC_SATURATE | EMAC_ROUND);
519} 523}
520 524
521void system_reboot (void) 525void system_reboot (void)