diff options
| author | Rafaël Carré <rafael.carre@gmail.com> | 2009-05-22 10:44:03 +0000 |
|---|---|---|
| committer | Rafaël Carré <rafael.carre@gmail.com> | 2009-05-22 10:44:03 +0000 |
| commit | f2c07a6b8a50bf41c97d1e8e17f88827a00d34a6 (patch) | |
| tree | 1168970192fe9fb10fe38b4d2670afb18ceb259f | |
| parent | 522aa2e6c99f10e329992b296a2af6cbe6ef7f66 (diff) | |
| download | rockbox-f2c07a6b8a50bf41c97d1e8e17f88827a00d34a6.zip rockbox-f2c07a6b8a50bf41c97d1e8e17f88827a00d34a6.tar.gz rockbox-f2c07a6b8a50bf41c97d1e8e17f88827a00d34a6.tar.bz2 rockbox-f2c07a6b8a50bf41c97d1e8e17f88827a00d34a6.tar.xz | |
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.S | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/rbutil/mkamsboot/dualboot.S b/rbutil/mkamsboot/dualboot.S index 3b744f8..313627d 100644 --- a/rbutil/mkamsboot/dualboot.S +++ b/rbutil/mkamsboot/dualboot.S @@ -21,10 +21,7 @@ .text -/* This is the size of the Clip's RAM, but there is nothing to be gained - (at the moment) by making use of the larger RAM of other targets */ - -.set DRAM_SIZE, 0x50000 +.set IRAM_SIZE, 0x50000 .set GPIOA, 0xC80B0000 .set GPIOB, 0xC80C0000 @@ -60,7 +57,7 @@ start: ldr r1, uclunpack_size /* Source length */ sub r2, r0, r1 /* Source start - 1*/ - ldr r3, =(DRAM_SIZE-1) /* Destination end */ + ldr r3, =(IRAM_SIZE-1) /* Destination end */ uclcopy: ldrb r4, [r0], #-1 |