From 0b06c15ae5a3f426a389b6906c295908e1344f2e Mon Sep 17 00:00:00 2001 From: TomW Date: Wed, 25 Nov 2015 21:25:21 +0000 Subject: [PATCH] Added missing SETALC instruction to 808x.c --- src/808x.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/808x.c b/src/808x.c index c0017f2..97d5a18 100644 --- a/src/808x.c +++ b/src/808x.c @@ -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);