avr.java

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

JAVA
28
字号
//// nanovm/avr/AVR.java//// part of NanoVM//package nanovm.avr;public class AVR {  // these are fields representing ports the vm   // handles internally  public static Port portA;  public static Port portB;  public static Port portC;  public static Port portD;  public static Port portE;  public static Port portF;  public static Port portG;  public static Port portH;  // and the PWM units  public static Pwm pwm0;  public static Pwm pwm1;  // return system clock in khz  static public native int getClock();}

⌨️ 快捷键说明

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