Init
This commit is contained in:
12
CommandDecoder.java
Normal file
12
CommandDecoder.java
Normal file
@@ -0,0 +1,12 @@
|
||||
public class CommandDecoder
|
||||
{
|
||||
public void CommandDecoder(String input) {
|
||||
int binaryInput = Integer.parseInt(input);
|
||||
|
||||
if ((binaryInput & 0x3F00) == 0x700) {
|
||||
//ADDWF();
|
||||
} else if ((binaryInput & 0x3F00) == 0x500) {
|
||||
//ANDWF();
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user