This commit is contained in:
feos 2019-01-23 16:07:34 +03:00 committed by GitHub
parent ce3e3d2ed3
commit 9955c55a0a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 3 deletions

View File

@ -189,7 +189,7 @@ namespace BizHawk.Emulation.Cores.Components.M68000
int pc = info.PC + 2;
int size = (op >> 6) & 3;
int mode = (op >> 3) & 7;
int reg = (op >> 0) & 3;
int reg = (op >> 0) & 7;
switch (size)
{
@ -516,7 +516,7 @@ namespace BizHawk.Emulation.Cores.Components.M68000
int pc = info.PC + 2;
int size = (op >> 6) & 3;
int mode = (op >> 3) & 7;
int reg = (op >> 0) & 3;
int reg = (op >> 0) & 7;
switch (size)
{
@ -1147,4 +1147,4 @@ namespace BizHawk.Emulation.Cores.Components.M68000
info.Length = pc - info.PC;
}
}
}
}