diff options
| author | Linus Nielsen Feltzing <linus@haxx.se> | 2005-07-09 07:46:42 +0000 |
|---|---|---|
| committer | Linus Nielsen Feltzing <linus@haxx.se> | 2005-07-09 07:46:42 +0000 |
| commit | 62c768c0db601fa1cc8532bb583060f2a8080453 (patch) | |
| tree | 96c83ffdb5f8b0edc3dc1e0f6fc417a60d607bc9 /bootloader | |
| parent | f69c77933c7fca7b72dfc6aa94cbe03651a149f8 (diff) | |
| download | rockbox-62c768c0db601fa1cc8532bb583060f2a8080453.zip rockbox-62c768c0db601fa1cc8532bb583060f2a8080453.tar.gz rockbox-62c768c0db601fa1cc8532bb583060f2a8080453.tar.bz2 rockbox-62c768c0db601fa1cc8532bb583060f2a8080453.tar.xz | |
Recovered from my major brain failure and reverted to using the same load address for both H110 and H120/140
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@7082 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'bootloader')
| -rw-r--r-- | bootloader/main.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bootloader/main.c b/bootloader/main.c index e7e6166..5cc995c 100644 --- a/bootloader/main.c +++ b/bootloader/main.c @@ -35,12 +35,12 @@ #include "power.h" #include "file.h" +#define DRAM_START 0x31000000 + #ifdef IRIVER_H100 #define MODEL_NUMBER 1 -#define DRAM_START 0x30000000 #else #define MODEL_NUMBER 0 -#define DRAM_START 0x31000000 #endif int line = 0; |