implemented Movf Instruction (#18)

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

View File

@@ -25,8 +25,7 @@ public class CommandDecoder
case 0x400:
return new Iorwf(input);
case 0x800:
//movf();
break;
return new Movf(input);
case 0xD00:
//rlf();
break;