Added CommandDecoder for CLRF, CRLW, COMF, DECF

This commit is contained in:
darkress
2023-04-17 15:12:52 +02:00
parent 5468cce530
commit 5a0dbf47d1

View File

@@ -7,6 +7,18 @@ public class CommandDecoder
//ADDWF(); //ADDWF();
} else if ((binaryInput & 0x3F00) == 0x500) { } else if ((binaryInput & 0x3F00) == 0x500) {
//ANDWF(); //ANDWF();
} else if ((binaryInput & 0x7F00) == 0x3)
{
//CLRF();
} else if ((binaryInput & 0x7F00) == 0x2)
{
//CLRW();
} else if ((binaryInput & 0x3F00) == 0x900)
{
//COMF();
} else if ((binaryInput & 0x3F00) == 0x300)
{
//DECF();
} }
} }
} }