115,116c115,117
< case ConditionTests::STRZnZF:
< panic("This condition is not implemented!");
---
> case ConditionTests::STRZnEZF:
> return !ccflags.EZF & ccflags.ZF;
> //And no interrupts or debug traps are waiting
147,148c148,150
< case ConditionTests::NotSTRZnZF:
< panic("This condition is not implemented!");
---
> case ConditionTests::STRnZnEZF:
> return !ccflags.EZF & !ccflags.ZF;
> //And no interrupts or debug traps are waiting