diff --git a/CommandDecoder.java b/CommandDecoder.java index abebfb6..4241cdc 100644 --- a/CommandDecoder.java +++ b/CommandDecoder.java @@ -7,6 +7,18 @@ public class CommandDecoder //ADDWF(); } else if ((binaryInput & 0x3F00) == 0x500) { //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(); } } }