summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRafaël Carré <rafael.carre@gmail.com>2009-05-22 10:44:03 +0000
committerRafaël Carré <rafael.carre@gmail.com>2009-05-22 10:44:03 +0000
commitf2c07a6b8a50bf41c97d1e8e17f88827a00d34a6 (patch)
tree1168970192fe9fb10fe38b4d2670afb18ceb259f
parent522aa2e6c99f10e329992b296a2af6cbe6ef7f66 (diff)
downloadrockbox-f2c07a6b8a50bf41c97d1e8e17f88827a00d34a6.tar.gz
rockbox-f2c07a6b8a50bf41c97d1e8e17f88827a00d34a6.zip
mkamsboot : remove a misleading comment (we only use IRAM)
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@21028 a1c6a512-1295-4272-9138-f99709370657
-rw-r--r--rbutil/mkamsboot/dualboot.S7
1 files changed, 2 insertions, 5 deletions
diff --git a/rbutil/mkamsboot/dualboot.S b/rbutil/mkamsboot/dualboot.S
index 3b744f87df..313627d307 100644
--- a/rbutil/mkamsboot/dualboot.S
+++ b/rbutil/mkamsboot/dualboot.S
@@ -21,10 +21,7 @@
21 21
22.text 22.text
23 23
24/* This is the size of the Clip's RAM, but there is nothing to be gained 24.set IRAM_SIZE, 0x50000
25 (at the moment) by making use of the larger RAM of other targets */
26
27.set DRAM_SIZE, 0x50000
28 25
29.set GPIOA, 0xC80B0000 26.set GPIOA, 0xC80B0000
30.set GPIOB, 0xC80C0000 27.set GPIOB, 0xC80C0000
@@ -60,7 +57,7 @@ start:
60 ldr r1, uclunpack_size /* Source length */ 57 ldr r1, uclunpack_size /* Source length */
61 sub r2, r0, r1 /* Source start - 1*/ 58 sub r2, r0, r1 /* Source start - 1*/
62 59
63 ldr r3, =(DRAM_SIZE-1) /* Destination end */ 60 ldr r3, =(IRAM_SIZE-1) /* Destination end */
64 61
65uclcopy: 62uclcopy:
66 ldrb r4, [r0], #-1 63 ldrb r4, [r0], #-1