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

📄 dskip.java

📁 用Java实现的编译器。把源代码编译成SPARC汇编程序
💻 JAVA
字号:
// $Id: dSkip.java,v 1.2 1999/11/04 16:53:41 deberg Exp $package java6035.tools.ASM;/** * dSkip * * represents the ".skip" directive of SPARC. Indicates an unitialised * sequence of N bytes, give .skip N. N must be non-negative. */public class dSkip extends ASMDirective{    public int skip;    public dSkip(int n)    {		super(ASMDirective.SKIP);		this.skip = n;    }    /**     * Returns the string representation.     */    public String toString()    {		return ".skip "+skip;    }}

⌨️ 快捷键说明

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