Fix bug with ROR acting as LSR

This commit is contained in:
edmccard 2012-04-12 03:18:33 -04:00
parent 41a12c284a
commit 71f7a46e21
1 changed files with 1 additions and 1 deletions

View File

@ -405,7 +405,7 @@ string OpBody(int op, string chip, bool s, bool c)
break; break;
case "ROR": case "ROR":
if (op == 0x6a) if (op == 0x6a)
ret ~= ShiftRight(_A); ret ~= RotateRight(_A);
else else
ret ~= RMW(RotateRight("data"), env); ret ~= RMW(RotateRight("data"), env);
break; break;