GP-3889: Fixed 6x09 clr instruction not clearing carry flag

This commit is contained in:
ghidorahrex 2023-09-29 12:57:48 +00:00
parent 4f4933843a
commit 667e14af07

View file

@ -504,6 +504,7 @@ macro clear(op)
op = 0;
$(Z) = 1;
$(N) = 0;
$(C) = 0;
}
macro addition(reg, op)