diff options
| author | Rafaël Carré <rafael.carre@gmail.com> | 2010-07-16 00:05:52 +0000 |
|---|---|---|
| committer | Rafaël Carré <rafael.carre@gmail.com> | 2010-07-16 00:05:52 +0000 |
| commit | 765c4f1a97a0fbe080e1d6c9f8c253bfb0f1b46a (patch) | |
| tree | 5e259cf7316df460f5dea8a2f4ac1d382e2c7c73 | |
| parent | f5c79105a4087362f2b95ecbc359ccecbf4910c9 (diff) | |
| download | rockbox-765c4f1a97a0fbe080e1d6c9f8c253bfb0f1b46a.zip rockbox-765c4f1a97a0fbe080e1d6c9f8c253bfb0f1b46a.tar.gz rockbox-765c4f1a97a0fbe080e1d6c9f8c253bfb0f1b46a.tar.bz2 rockbox-765c4f1a97a0fbe080e1d6c9f8c253bfb0f1b46a.tar.xz | |
mkamsboot: update outdated comment
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@27442 a1c6a512-1295-4272-9138-f99709370657
| -rw-r--r-- | rbutil/mkamsboot/mkamsboot.c | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/rbutil/mkamsboot/mkamsboot.c b/rbutil/mkamsboot/mkamsboot.c index ae475ed..7427527 100644 --- a/rbutil/mkamsboot/mkamsboot.c +++ b/rbutil/mkamsboot/mkamsboot.c @@ -247,19 +247,18 @@ static struct md5sums sansasums[] = { static unsigned int model_memory_size(int model) { + /* The OF boots with IRAM (320kB) mapped at 0x0 */ + if(model == MODEL_CLIPV2) { /* The decompressed Clipv2 OF is around 380kB. - * Since it doesn't fit in the 0x50000 bytes IRAM, the OF starts - * with DRAM mapped at 0x0 - * - * We could use all the available memory (supposedly 8MB) - * but 1MB ought to be enough for our use + * Let's use the full IRAM (1MB on AMSv2) */ return 1 << 20; } else - { /* The OF boots with IRAM (320kB) mapped at 0x0 */ + { + /* The IRAM is 320kB on AMSv1, and 320 will be enough on Fuzev1/Clip+ */ return 320 << 10; } } |