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, 2 insertions, 2 deletions
diff --git a/firmware/system.c b/firmware/system.c
index 234e29433d..16bea107d6 100644
--- a/firmware/system.c
+++ b/firmware/system.c
@@ -493,8 +493,8 @@ void system_init(void)
493 493
494 /* Bus state controller initializations. These are only necessary when 494 /* Bus state controller initializations. These are only necessary when
495 running from flash. The correct settings for player models are not 495 running from flash. The correct settings for player models are not
496 verified, so we only do this for the recorder. */ 496 verified, so we only do this for the recorder and for the Ondio. */
497#ifdef HAVE_RECORDING 497#if defined(HAVE_RECORDING) || defined(HAVE_MMC)
498 WCR1 = 0x4000; /* Long wait states for CS6 (ATA), short for the rest. */ 498 WCR1 = 0x4000; /* Long wait states for CS6 (ATA), short for the rest. */
499 WCR3 = 0x8000; /* WAIT is pulled up, 1 state inserted for CS6 */ 499 WCR3 = 0x8000; /* WAIT is pulled up, 1 state inserted for CS6 */
500#endif 500#endif