m6805: flag fix (nw)

CLRX doesn't clear the carry flag.
This commit is contained in:
Patrick Mackinlay 2019-06-04 16:52:47 +07:00
parent 2da0d37967
commit e5b8df95cc

View File

@ -473,7 +473,7 @@ OP_HANDLER( tstx )
OP_HANDLER( clrx )
{
X = 0;
clr_nzc();
clr_nz();
SEZ;
}