mirror of
https://github.com/Rockbox/rockbox.git
synced 2025-11-09 13:12:37 -05:00
New port: iPod Classic (also known as iPod 6G/6.5G/7G)
Major known issues: - No bootloader yet - No support for the first-generation 160GB CE-ATA hard disk drive yet - Audio playback is slow, only FLAC seems to reach realtime git-svn-id: svn://svn.rockbox.org/rockbox/trunk@28953 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
6f40387e74
commit
152847977a
43 changed files with 4975 additions and 37 deletions
|
|
@ -71,6 +71,10 @@ OUTPUT_FORMAT(elf32-littlemips)
|
|||
#else
|
||||
#define DRAMSIZE (DRAM_SIZE - PLUGIN_BUFFER_SIZE - STUBOFFSET - CODEC_SIZE - TTB_SIZE)
|
||||
#endif
|
||||
#elif CONFIG_CPU==S5L8702
|
||||
#define ASM
|
||||
#include "cpu.h"
|
||||
#define DRAMSIZE (DRAM_SIZE - PLUGIN_BUFFER_SIZE - CODEC_SIZE - TTB_SIZE)
|
||||
#endif
|
||||
|
||||
/* default to full RAM (minus codecs&plugins) unless specified otherwise */
|
||||
|
|
@ -150,6 +154,12 @@ OUTPUT_FORMAT(elf32-littlemips)
|
|||
#define IRAMORIG (0x00000000 + (48*1024))
|
||||
#define IRAMSIZE (128*1024)
|
||||
|
||||
#elif CONFIG_CPU==S5L8702
|
||||
/* S5L8702 have 256KB of IRAM */
|
||||
#define DRAMORIG 0x08000000
|
||||
#define IRAMORIG (0x00000000 + (56*1024))
|
||||
#define IRAMSIZE (200*1024)
|
||||
|
||||
#elif CONFIG_CPU == JZ4732
|
||||
#define DRAMORIG 0x80004000 + STUBOFFSET
|
||||
#define IRAM DRAM
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue