diff options
| author | Rafaël Carré <rafael.carre@gmail.com> | 2009-06-08 23:05:33 +0000 |
|---|---|---|
| committer | Rafaël Carré <rafael.carre@gmail.com> | 2009-06-08 23:05:33 +0000 |
| commit | f5041538574c039b07c4db8d261bd33ec0f3bab0 (patch) | |
| tree | d4fc2f48c7209e3303b5c48abc211e3a961a7dac /bootloader | |
| parent | 20a78a36f36967651032ab10b4ee31412e37b69d (diff) | |
| download | rockbox-f5041538574c039b07c4db8d261bd33ec0f3bab0.zip rockbox-f5041538574c039b07c4db8d261bd33ec0f3bab0.tar.gz rockbox-f5041538574c039b07c4db8d261bd33ec0f3bab0.tar.bz2 rockbox-f5041538574c039b07c4db8d261bd33ec0f3bab0.tar.xz | |
FS#10048 : enable MMU and data cache on Sansa AMS to give a major speed up
- cache IRAM and DRAM
- map IRAM just next to DRAM to remove the need for -mlong-calls and reduce binsize
- tweak delays in Fuze button code
- tweak delays in Clip button code (down button sometimes doesn't respond anyway : an alternate driver is being worked on)
Before reporting any problem, please check your filesystem or format your player from the OF
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@21228 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'bootloader')
| -rw-r--r-- | bootloader/sansa_as3525.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/bootloader/sansa_as3525.c b/bootloader/sansa_as3525.c index dbe6218..48f21bc 100644 --- a/bootloader/sansa_as3525.c +++ b/bootloader/sansa_as3525.c @@ -36,6 +36,8 @@ #include "power.h" int show_logo(void); + +void main(void) __attribute__((naked, noreturn)); void main(void) { unsigned char* loadbuffer; |