implemented decfsz Instruction

This commit is contained in:
Darkress
2023-05-31 20:50:27 +02:00
parent e18ec6d167
commit 89f4845df6
3 changed files with 12 additions and 4 deletions

View File

@@ -17,8 +17,7 @@ public class CommandDecoder
case 0x300:
return new Decf(input);
case 0xB00:
//decfsz();
break;
return new Decfsz(input);
case 0xA00:
//incf();
break;