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

📄 listopts.s

📁 ARM入门的好帮手.包含了从简单到相对较复杂的程序.
💻 S
字号:
        SUBT    armasm OPT directive values                        > listopts.s        ; ---------------------------------------------------------------------        ; Assembler support header file.        ;        ; $Revision: 1.2 $        ;   $Author: amerritt $        ;     $Date: 1996/07/08 13:22:18 $        ;        ; listopts.s        ; ----------        ; This file should be included before including any other armasm        ; "include" files. This file defines the OPT directive parameters        ; that control listing when the "-print" command line option is        ; specified.        ;        ; Copyright Advanced RISC Machines Limited, 1995.         ; All Rights Reserved        ; ---------------------------------------------------------------------        [       (:LNOT: :DEF: listopts_s)                GBLL         listopts_slistopts_s      SETL         {TRUE}        ; ---------------------------------------------------------------------        ; Printing optionsopt_on          *       (1 :SHL: 0)     ; listing onopt_off         *       (1 :SHL: 1)     ; listing offopt_ff          *       (1 :SHL: 2)     ; form-feedopt_reset       *       (1 :SHL: 3)     ; reset line number to zeroopt_von         *       (1 :SHL: 4)     ; variable listing onopt_voff        *       (1 :SHL: 5)     ; variable listing offopt_mon         *       (1 :SHL: 6)     ; macro expansion onopt_moff        *       (1 :SHL: 7)     ; macro expansion offopt_mcon        *       (1 :SHL: 8)     ; macro calls onopt_mcoff       *       (1 :SHL: 9)     ; macro calls offopt_p1on        *       (1 :SHL: 10)    ; pass 1 listing onopt_p1off       *       (1 :SHL: 11)    ; pass 1 listing offopt_con         *       (1 :SHL: 12)    ; conditional directives onopt_coff        *       (1 :SHL: 13)    ; conditional directives offopt_mendon      *       (1 :SHL: 14)    ; mend directives onopt_mendoff     *       (1 :SHL: 15)    ; mend directives off        OPT     (opt_on :OR: opt_voff :OR: opt_moff :OR: opt_mcon :OR: opt_p1off :OR: opt_coff :OR: opt_mendoff)        GBLA    old_optold_opt SETA    {OPT}        ; The "old_opt" variable should be used as a holder for the        ; user specified options over future header files. This gives        ; control over hiding the contents of include files in        ; listings.        ; ---------------------------------------------------------------------        NOFP    ; assembler option to ensure no FP instructions generated        [       ({CONFIG} <> 32)        ASSERT  (1 = 0) ; This code is designed for 32bit ARM systems only        ]FALSE           EQU     0       ; standard boolean control valuesTRUE            EQU     1        ; ---------------------------------------------------------------------        ]       ; listopt_s        ; ---------------------------------------------------------------------        END     ; listopts.s

⌨️ 快捷键说明

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