Don't double-execute AL instructions

This commit is contained in:
Jeffrey Pfau 2013-04-08 00:17:54 -07:00
parent 4f3e77c87e
commit 37ad6218da
1 changed files with 1 additions and 0 deletions

View File

@ -43,6 +43,7 @@ void ARMStep(struct ARMCore* cpu) {
int condition = opcode >> 28;
if (condition == 0xE) {
instruction(cpu, opcode);
return;
} else {
switch (condition) {
case 0x0: