talio.java

来自「Java Op Processor java vhdl processor」· Java 代码 · 共 34 行

JAVA
34
字号
/* * 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 wcet.lift;/** * @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 + =
减小字号Ctrl + -
显示快捷键?