1
0
Fork 0
forked from len0rd/rockbox

The iPod Video has the HW version at a different address in ROM.

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@15338 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Jens Arnold 2007-10-28 01:00:18 +00:00
parent c266204aec
commit d3e101bd11

View file

@ -54,11 +54,19 @@ bool is_new_player(void);
#endif
#ifdef IPOD_ARCH
#ifdef IPOD_VIDEO
#ifdef BOOTLOADER
#define IPOD_HW_REVISION (*((unsigned long*)(0x0000405c)))
#else /* ROM is remapped */
#define IPOD_HW_REVISION (*((unsigned long*)(0x2000405c)))
#endif
#else /* !IPOD_VIDEO */
#ifdef BOOTLOADER
#define IPOD_HW_REVISION (*((unsigned long*)(0x00002084)))
#else
#else /* ROM is remapped */
#define IPOD_HW_REVISION (*((unsigned long*)(0x20002084)))
#endif
#endif
#endif /* !IPOD_VIDEO */
#endif /* IPOD_ARCH */
#endif /* HWCOMPAT_H */