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

📄 baseinstruction.java

📁 只是一个简单模拟操作系统
💻 JAVA
字号:
/* * BaseInstruction.java * * Created on 2006年3月15日, 下午9:49 * * To change this template, choose Tools | Options and locate the template under * the Source Creation and Management node. Right-click the template and choose * Open. You can then make changes to the template in the Source Editor. */package os.compiler;/** * * @author Vernkin */public interface BaseInstruction{	String[] instruction = { "ADD","AND","BR","JSR","JSRR","LD",							"LDI","LDR","LEA","NOT","RET","HALT",							"ST","STI","STR","TRAP"};	String[] instructionCode = {"0001","0101","0000","0100","1100","0010",								"1010","0110","1110","1001","1101","1000",								"0011","1011","0111","1111"};									String[] registerName = {"R0","R1","R2","R3","R4","R5","R6","R7"};	}

⌨️ 快捷键说明

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