⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 port.java

📁 单片机上的java虚拟机 用winavr 编译
💻 JAVA
字号:
//// nanovm/avr/Port.java//// the contents of this file is actually never realy used// since class2uvm replaces these calls with native calls//package nanovm.avr;public class Port {//  public static final boolean INPUT  = false;//  public static final boolean OUTPUT = true;  public native void setInput(int bit);  public native void setOutput(int bit);  public native void setBit(int bit);  public native void clrBit(int bit);}

⌨️ 快捷键说明

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