From 9d900b586e16df9f51e0246f203bdb2fa08e448a Mon Sep 17 00:00:00 2001 From: Ron Sluiter Date: Fri, 21 Oct 2011 21:31:23 +0000 Subject: [PATCH] Added PPC32 to MSB bit-field test. --- motorApp/MotorSrc/motor.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/motorApp/MotorSrc/motor.h b/motorApp/MotorSrc/motor.h index d3f275a3..3f11b32b 100644 --- a/motorApp/MotorSrc/motor.h +++ b/motorApp/MotorSrc/motor.h @@ -137,7 +137,7 @@ typedef enum { #define LSB_First (TRUE) /* LSB is packed first. */ #elif defined(sparc) || defined(m68k) || defined(powerpc) #define MSB_First (TRUE) /* MSB is packed first. */ -#elif (CPU == PPC604) || (CPU == PPC603) || (CPU==PPC85XX) || (CPU == MC68040) +#elif (CPU == PPC604) || (CPU == PPC603) || (CPU==PPC85XX) || (CPU == MC68040) || (CPU == PPC32) #define MSB_First (TRUE) /* MSB is packed first. */ #else #error: unknown bit order!