diff options
author | Jens Arnold <amiconn@rockbox.org> | 2008-10-29 07:11:52 +0000 |
---|---|---|
committer | Jens Arnold <amiconn@rockbox.org> | 2008-10-29 07:11:52 +0000 |
commit | 2d4eacb9ec06e636519f6065c78c8f481b587f94 (patch) | |
tree | 083b3deb9639a71d00818e7cbccf833f34eaf459 | |
parent | 8f7f219dbabee320862cb7ed8616300d54f935cb (diff) |
AS3525 is ARMv4, not ARMv5.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@18915 a1c6a512-1295-4272-9138-f99709370657
-rw-r--r-- | firmware/export/config.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/firmware/export/config.h b/firmware/export/config.h index e425bf98e5..01141f3866 100644 --- a/firmware/export/config.h +++ b/firmware/export/config.h @@ -461,13 +461,13 @@ #define ARM_ARCH 6 /* ARMv6 */ #endif -#if defined(CPU_TCC77X) || defined(CPU_TCC780X) || (CONFIG_CPU == DM320) || (CONFIG_CPU == AS3525) +#if defined(CPU_TCC77X) || defined(CPU_TCC780X) || (CONFIG_CPU == DM320) #define CPU_ARM #define ARM_ARCH 5 /* ARMv5 */ #endif #if defined(CPU_PP) || (CONFIG_CPU == PNX0101) || (CONFIG_CPU == S3C2440) \ - || (CONFIG_CPU == DSC25) || (CONFIG_CPU == S5L8700) + || (CONFIG_CPU == DSC25) || (CONFIG_CPU == S5L8700) || (CONFIG_CPU == AS3525) #define CPU_ARM #define ARM_ARCH 4 /* ARMv4 */ #endif |