软件工具 SofTool.CN 本次搜索耗时 0.372 秒,为您找到 39 个相关结果.
  • CPSR、SPSR

    3489 2020-12-25 《ARM 汇编》
    程序状态寄存器: 程序状态寄存器的32位格式: 条件代码标志位的含义: ★★★ 程序状态寄存器的32位划分缩写: 示例: 程序状态寄存器: 程序状态寄存器 分为 CPSR 和 SPSR; CPSR 简介:CPSR = Current Program Status Register ,当前程序状态寄存器; SPSR 简介:SPSR = Sa...
  • 7. Stack and Functions

    STACK AND FUNCTIONS In this part we will look into a special memory region of the process called the Stack. This chapter covers Stack’s purpose and operations related to it. Addi...
  • 伪操作

    3400 2020-12-25 《ARM 汇编》
    伪操作中英文 宏指令和伪操作的关系: 伪操作常见的几种形式: 伪操作中英文 伪操作 derective 宏指令 pseudo-instuction pseudo 伪英[ˈsjuːdəʊ] 美[ˈsudoʊ] 宏指令和伪操作的关系: 宏指令通过伪操作定义。伪操作由编译程序处理。 注:关于编译程序的更多知识,可以查阅《GCC 编译...
  • IF ELSE ENDIF

    3393 2020-12-25 《ARM 汇编》
    语法: IF 逻辑表达式 指令序列1 ELSE 指令序列2 ENDIF 备注:IF 也可以使用 [ 代替, ELSE 也可以使用 | 代替, ENDIF 也可以使用 ] 代替; 当 IF 后面的逻辑表达式为真,则执行指令序列1,否则执行 指令序列2;ELSE 及 指令序列2 也可以没有,当 IF 后面的逻辑表达式为真,则执行 指令序列1 ,...
  • ldm

    3366 2020-12-25 《ARM 汇编》
    语法: ldm{条件}{寻址方式} 基址寄存器{!} 目的寄存器列表 参数: {条件} 可选项 {寻址方式} 可选项可参见: https://www.softool.cn/read/arm_assembly/iaibdadb.html 基址寄存器 作为被复制数据的源 {!} 可选项如果有该感叹号,则在指令被执行之后,将 pc 的地址更新给基址寄...
  • and

    3349 2020-12-25 《ARM 汇编》
    语法: and {条件} Rd , Rs , 寄存器移位操作或立即数 备注: {条件} 可选项 Rn 目的寄存器 Rs 源寄存器 运算原理: 如果满足条件(例如:条件助记符eq 表示z=1),则把 寄存器移位操作之后的数值 与 Rn 按位进行逻辑与,并把结果保存到 Rd 中; 示例: mov r0 , #0x01 ...
  • stm

    3314 2020-12-25 《ARM 汇编》
    语法: stm{条件}{寻址方式} 基址寄存器{!} 目的寄存器列表 备注: {条件}可选项 {寻址方式}可选项可参见: https://www.softool.cn/read/arm_assembly/iaibdadb.html 基址寄存器作为数据复制后放到该基址寄存器所表示的地址 {!}可选项 如果有该符合,则在指令被执行之后,将 pc ...
  • 2. ARM Data Types and Registers

    DATA TYPES This is part two of the ARM Assembly Basics tutorial series, covering data types and registers. Similar to high level languages, ARM supports operations on different ...
  • 3. ARM Instruction set

    ARM & THUMB ARM processors have two main states they can operate in (let’s not count Jazelle here), ARM and Thumb. These states have nothing to do with privilege levels. For exam...
  • 4. Memory Instructions: Load and Store

    MEMORY INSTRUCTIONS: LOAD AND STORE ARM uses a load-store model for memory access which means that only load/store (LDR and STR) instructions can access memory. While on x86 most...