implement Incf Instruction (#13)

Co-authored-by: Darkress <30271678+DarkressX@users.noreply.github.com>
Reviewed-on: darkress/pic16f84-sim#13
This commit was merged in pull request #13.
This commit is contained in:
darkress
2023-05-31 22:13:12 +02:00
parent c896b4f199
commit 7eab465fff
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;