implemented btfss Instruction

This commit is contained in:
Darkress
2023-06-07 21:34:01 +02:00
parent 5cb1573a08
commit 5f1ba4e9e6
3 changed files with 32 additions and 6 deletions

View File

@@ -63,16 +63,13 @@ public class CommandDecoder
case 0x1800:
return new Btfsc(input);
case 0x1C00:
//btfss();
break;
return new Btfss(input);
}
switch(input & 0x3E00)
{
case 0x3E00:
//addlw();
return new Addlw(input);
//break;
case 0x3C00:
return new Sublw(input);
}