📄 dskip.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 + -