lcd.java

来自「单片机上的java虚拟机 用winavr 编译」· Java 代码 · 共 22 行

JAVA
22
字号
//// nanovm/io/Lcd.java//// When converting NanoVM code using the Convert tool, this// code will magically be replaced by native methods. This// code will never be called.//// It is possible to fill this code with e.g. a graphical // representation of the Asuro allowing the Java code to be// run on a PC using a Asuro simulation//package nanovm.io;public class Lcd {  public static native void clear();  public static native void gotoYX(int y, int x);  public static native void print(String str);  public static native void print(int num);  public static native void print(char chr);}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?