📄 dsection.java
字号:
// $Id: dAlign.java,v 1.2 1999/11/04 16:53:41 deberg Exp $package java6035.tools.ASM;/** * dSection * * The ".section" directive for SPARC. Usually in the form of .section <string> * Indicates the beginning of one of these segments depending what * <string> is. * "text" for program code * "data" for global writeable initialised data * "rodata" for read-only global initialised data * ".bss" for global uninitialised data */public class dSection extends ASMDirective{ public String name; public dSection(String name) { super(ASMDirective.SECTION); if (!name.equals(".text") && !name.equals(".data") && !name.equals(".rodata") && !name.equals(".bss")) { throw new ASMException("Improper section declared. Must be either \".text\" or \".data\" or \".rodata\" or \".bss\""); } this.name = name; } /** * Returns the string representation. */ public String toString() { return ".section\t\""+name+"\""; }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -