implemented Movwf instruction (#19)

Co-authored-by: Darkress <30271678+DarkressX@users.noreply.github.com>
Reviewed-on: darkress/pic16f84-sim#19
This commit was merged in pull request #19.
This commit is contained in:
darkress
2023-06-06 00:00:58 +02:00
parent a5e3039667
commit 40b7a4a478
3 changed files with 27 additions and 3 deletions

View File

@@ -56,8 +56,7 @@ public class CommandDecoder
case 0x100:
return new Clrw();
case 0x80:
//movwf();
break;
return new Movwf(input);
}
switch(input & 0x3C00)