GBA: Fix build

This commit is contained in:
bgk 2013-02-03 12:43:01 +00:00
parent 6579cd900d
commit bc103fbf60
1 changed files with 2 additions and 1 deletions

View File

@ -966,6 +966,7 @@ static void count(u32 opcode, int cond_res)
#define OP_RSB \
u32 lhs = value; \
u32 rhs = reg[(opcode>>16)&15].I; \
u32 res = lhs - rhs; \
reg[dest].I = res;
#endif
#ifndef OP_RSBS
@ -2959,4 +2960,4 @@ int armExecute()
} while (cpuTotalTicks<cpuNextEvent && armState && !holdState && !SWITicks);
return 1;
}
}