implemented btfsc Instruction (#27)

Co-authored-by: Darkress <30271678+DarkressX@users.noreply.github.com>
Reviewed-on: darkress/pic16f84-sim#27
This commit was merged in pull request #27.
This commit is contained in:
darkress
2023-06-07 21:31:11 +02:00
parent d11f1b06f6
commit 5cb1573a08
3 changed files with 31 additions and 3 deletions

View File

@@ -61,8 +61,7 @@ public class CommandDecoder
case 0x1400:
return new Bsf(input);
case 0x1800:
//btfsc();
break;
return new Btfsc(input);
case 0x1C00:
//btfss();
break;