Z80: corrected typo in flag name

This commit is contained in:
David Banks 2018-09-22 16:29:19 +01:00
parent 651a1753b7
commit d9c92ebdc3
1 changed files with 1 additions and 1 deletions

View File

@ -417,7 +417,7 @@ function formatFstring(f){
((f & 0x08)?'X':'x') +
((f & 0x04)?'P':'p') +
((f & 0x02)?'N':'n') +
((f & 0x01)?'F':'f');
((f & 0x01)?'C':'c');
return result;
}