implement Incf Instruction

This commit is contained in:
Darkress
2023-05-31 22:12:27 +02:00
parent c896b4f199
commit dd6649ab59
3 changed files with 29 additions and 6 deletions

View File

@@ -19,8 +19,7 @@ public class CommandDecoder
case 0xB00:
return new Decfsz(input);
case 0xA00:
//incf();
break;
return new Incf(input);
case 0xF00:
//incfsz();
break;