implemented Movwf instruction

This commit is contained in:
Darkress
2023-06-05 23:58:15 +02:00
parent a5e3039667
commit 30deff96a8
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)