diff options
| author | Daniel Stenberg <daniel@haxx.se> | 2005-06-18 21:53:07 +0000 |
|---|---|---|
| committer | Daniel Stenberg <daniel@haxx.se> | 2005-06-18 21:53:07 +0000 |
| commit | 57e78a56c73a76e23fae2e098254449c36eb9ed6 (patch) | |
| tree | af86e5a42e021a7cc9b83c3cfd2327b5257b845e | |
| parent | 6dd2729dd09de302b73950d14113cbc137ba7a4f (diff) | |
| download | rockbox-57e78a56c73a76e23fae2e098254449c36eb9ed6.zip rockbox-57e78a56c73a76e23fae2e098254449c36eb9ed6.tar.gz rockbox-57e78a56c73a76e23fae2e098254449c36eb9ed6.tar.bz2 rockbox-57e78a56c73a76e23fae2e098254449c36eb9ed6.tar.xz | |
reverted the ifdef change, this code really IS H120/H140-specific and thus
this is one of the few places where the player model is checked for correctly
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@6758 a1c6a512-1295-4272-9138-f99709370657
| -rw-r--r-- | firmware/crt0.S | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/firmware/crt0.S b/firmware/crt0.S index fc90e42..59fb25b 100644 --- a/firmware/crt0.S +++ b/firmware/crt0.S @@ -115,9 +115,8 @@ irq_handler: pop r1, r0 ret_irq -#elif CONFIG_CPU == MCF5249 - - /* Platform: iRiver H1xx */ +#elif defined(IRIVER_H100) + /* Platform: iRiver H120/H140 */ move.w #0x2700,%sr move.l #vectors,%d0 |