diff options
| author | Linus Nielsen Feltzing <linus@haxx.se> | 2005-02-23 08:11:05 +0000 |
|---|---|---|
| committer | Linus Nielsen Feltzing <linus@haxx.se> | 2005-02-23 08:11:05 +0000 |
| commit | b935f435ff9d945534db37c38b30c5d78362e6ee (patch) | |
| tree | b329c690af311d1afac3c04697344cf8f35ef740 | |
| parent | 4f2a7df6d6e649a55129444bc6a3e21cce480ffc (diff) | |
| download | rockbox-b935f435ff9d945534db37c38b30c5d78362e6ee.zip rockbox-b935f435ff9d945534db37c38b30c5d78362e6ee.tar.gz rockbox-b935f435ff9d945534db37c38b30c5d78362e6ee.tar.bz2 rockbox-b935f435ff9d945534db37c38b30c5d78362e6ee.tar.xz | |
iRiver: DMA wasn't enabled in SRAM1, and the base address wasn't correct.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@6045 a1c6a512-1295-4272-9138-f99709370657
| -rw-r--r-- | firmware/crt0.S | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/firmware/crt0.S b/firmware/crt0.S index a264da0..8928890 100644 --- a/firmware/crt0.S +++ b/firmware/crt0.S @@ -136,7 +136,7 @@ irq_handler: DMA is enabled and has priority in both banks All types of accesses are allowed (We might want to restrict that to save power) */ - move.l #0x1000e001,%d0 + move.l #0x10000e01,%d0 movec.l %d0,%rambar1 /* 32K Non-DMA SRAM at 0x10010000 |