Added missing SETALC instruction to 808x.c
This commit is contained in:
parent
3d35442da7
commit
0b06c15ae5
1 changed files with 4 additions and 0 deletions
|
|
@ -2852,6 +2852,10 @@ void execx86(int cycs)
|
|||
setznp16(AX);
|
||||
cycles-=60;
|
||||
break;
|
||||
case 0xD6: /*SETALC*/
|
||||
AL = (flags & C_FLAG) ? 0xff : 0;
|
||||
cycles -= 4;
|
||||
break;
|
||||
case 0xD7: /*XLAT*/
|
||||
addr=BX+AL;
|
||||
AL=readmemb(ds+addr);
|
||||
|
|
|
|||
Loading…
Reference in a new issue