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

📄 talio.java

📁 Java Op Processor java vhdl processor
💻 JAVA
字号:
/* * Created on 12.07.2004 * * To change the template for this generated file go to * Window&gt;Preferences&gt;Java&gt;Code Generation&gt;Code and Comments */package tal;/** * @author martin * * To change the template for this generated type comment go to * Window&gt;Preferences&gt;Java&gt;Code Generation&gt;Code and Comments */public class TalIo {		boolean[] in;	boolean[] out;	int[] analog;	boolean[] led;		TalIo() {		in = new boolean[10];		out = new boolean[4];		analog = new int[3];		led = new boolean[14];		for (int i=0; i<10; ++i) in[i]	= false;			for (int i=0; i<4; ++i) out[i]	= false;			for (int i=0; i<3; ++i) analog[i]	= 0;			for (int i=0; i<14; ++i) led[i]	= false;		}}

⌨️ 快捷键说明

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