Files
pic16f84-sim/HelloWorld.java
2023-05-09 22:04:08 +02:00

9 lines
231 B
Java

class HelloWorld {
public static void main(String[] args) {
System.out.println("Hello, World!");
int input = Integer.decode("0x0070");
CommandDecoder commandDecoder = new CommandDecoder(input);
}
}