- [FIX] DJNZ() condition was reversed

This commit is contained in:
2024-04-16 19:08:47 +02:00
parent 8f6534475a
commit 9f67286779

View File

@@ -519,7 +519,7 @@ namespace z80
{
const int8_t d = (int8_t)READ_MEM_8();
rB--;
if (rB==0)
if (rB!=0)
{
rPC = rPC + d;
t+=5;