Files
pic16f84-sim/CommandDecoder.java
darkress 5468cce530 Init
2023-04-17 14:52:12 +02:00

13 lines
294 B
Java

public class CommandDecoder
{
public void CommandDecoder(String input) {
int binaryInput = Integer.parseInt(input);
if ((binaryInput & 0x3F00) == 0x700) {
//ADDWF();
} else if ((binaryInput & 0x3F00) == 0x500) {
//ANDWF();
}
}
}