implemented decf Instruction (#10)

Co-authored-by: Darkress <30271678+DarkressX@users.noreply.github.com>
Reviewed-on: darkress/pic16f84-sim#10
This commit was merged in pull request #10.
This commit is contained in:
darkress
2023-05-31 20:16:46 +02:00
parent 1f8e3aff58
commit 49ab5876b8
3 changed files with 30 additions and 4 deletions

View File

@@ -15,8 +15,7 @@ public class CommandDecoder
case 0x900:
return new Comf(input);
case 0x300:
//decf();
break;
return new Decf(input);
case 0xB00:
//decfsz();
break;