all repos — mgba @ 235141f1f364cd224ac7eb4fbf7a83afefe856f5

mGBA Game Boy Advance Emulator

Fix PSRs on some PPC compilers
Jeffrey Pfau jeffrey@endrift.com
Wed, 01 Oct 2014 12:42:12 +0000
commit

235141f1f364cd224ac7eb4fbf7a83afefe856f5

parent

d1f8e58b131e39a6dc67b7fe26499ad900c7c821

1 files changed, 1 insertions(+), 1 deletions(-)

jump to
M src/arm/arm.hsrc/arm/arm.h

@@ -52,7 +52,7 @@ struct ARMCore;

union PSR { struct { -#ifdef __POWERPC__ +#if defined(__POWERPC__) || defined(__PPC__) unsigned n : 1; unsigned z : 1; unsigned c : 1;