HCS12: Add missing carry clear in TSTA

This commit is contained in:
GaryOderNichts 2023-03-05 23:53:10 +01:00
parent a9baf9f6d8
commit f1d674aaf7

View file

@ -5853,13 +5853,14 @@ define pcodeop LoadStack;
$(Z) = (A == 0);
$(N) = (A s< 0);
V_equals_0();
$(C) = 0;
}
:TSTB is Prefix18=0 & op8=0xD7
{
$(Z) = (B == 0);
$(N) = (B s< 0);
$(V) = 0;
V_equals_0();
$(C) = 0;
}