forked from len0rd/rockbox
Initial support for iPod color and video. The Nano has a 176x132 LCD, which is the first colour LCD smaller than the gameboy's 160x144 display - so it needs work to skip scanlines. Button handling still needs more work - only up/down/left/right/start are currently mapped. Code is removed from IRAM due to 'relocation truncated to fit: R_ARM_PC24' errors.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@8400 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
b96ec65ac0
commit
e8f8d9e7e9
6 changed files with 71 additions and 21 deletions
|
|
@ -47,6 +47,11 @@ void loadstate(int fd);
|
|||
void savestate(int fd);
|
||||
#define USER_MENU_QUIT -2
|
||||
|
||||
/* Disable ICODE for the ARMs */
|
||||
#ifdef CPU_ARM
|
||||
#undef ICODE_ATTR
|
||||
#define ICODE_ATTR
|
||||
#endif
|
||||
|
||||
/* libc functions */
|
||||
#define isdigit(c) ((c) >= '0' && (c) <= '9')
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue