implemented Incfsz Instruction (#14)

Co-authored-by: Darkress <30271678+DarkressX@users.noreply.github.com>
Reviewed-on: darkress/pic16f84-sim#14
This commit was merged in pull request #14.
This commit is contained in:
darkress
2023-05-31 22:30:29 +02:00
parent 7eab465fff
commit b23bf4c54b
3 changed files with 38 additions and 4 deletions

View File

@@ -21,8 +21,7 @@ public class CommandDecoder
case 0xA00:
return new Incf(input);
case 0xF00:
//incfsz();
break;
return new Incfsz(input);
case 0x400:
//iorwf();
break;