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

13 lines
365 B
Java

class HelloWorld {
public static void main(String[] args) {
System.out.println("Hello, World!");
String input = "1962";
//String input = "12032";
int binaryInput = Integer.parseInt(input);
System.out.println(binaryInput);
Boolean test = (binaryInput & 0x3F00) == 0x700;
System.out.println(test);
}
}