dskip.java

来自「用Java实现的编译器。把源代码编译成SPARC汇编程序」· Java 代码 · 共 32 行

JAVA
32
字号
// $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 + =
减小字号Ctrl + -
显示快捷键?