软件工具 SofTool.CN 本次搜索耗时 0.247 秒,为您找到 23 个相关结果.
  • 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...
  • 4_gcc常用选项

    3699 2021-01-17 《GCC 入门》
    来看一下gcc常用选项: 选项名 作用 -o 产生目标(.i、.s、.o、可执行文件等) -E 只运行C预编译器 -S 告诉编译器产生汇编程序文件后停止编译,产生的汇编语言文件拓展名为.s -c 通知gcc取消连接步骤,即编译源码,并在最后生成目标文件 -Wall 使gcc对源文件的代码有问题的地方发出警告...
  • 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 ...
  • 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...
  • 4.1_GCC常用选项

    -o:生成目标( .i 、 .s 、 .o 、可执行文件等) -c:通知 gcc 取消链接步骤,即编译源码并在最后生成目标文件。 -E:只运行 C 预编译器 -S:告诉编译器产生汇编语言文件后停止编译,产生的汇编语言文件扩展名为 .s -Wall:使 gcc 对源文件的代码有问题的地方发出警告 -Idir:将dir目录加入搜索头文件的目录路径 -Ldir:...
  • 5. Load and Store Multiple

    Sometimes it is more efficient to load (or store) multiple values at once. For that purpose we use LDM (load multiple) and STM (store multiple). These instructions have variations ...
  • 简单调试

    3110 2021-04-24 《GDB 简介》
    准备操作: 编译: 启动被调试程序: 常用的几个命令 常用参数: 准备操作: 假设以下操作被调试的程序内容如下:文件名为: main.c #include <stdio.h> int main () { int i = 0 ; for (i=0 ; i<3 ; i++) { prin...
  • 6. Conditional Execution and Branching

    CONDITIONAL EXECUTION We already briefly touched the conditions’ topic while discussing the CPSR register. We use conditions for controlling the program’s flow during it’s runtim...
  • 创建输出文件

    2819 2021-05-05 《Autoconf 中文手册》
    宏: AC_OUTPUT ([file… [, extra-cmds [, init-cmds]]]) 参数file... 参数extra-cmds 参数init-cmds 宏: AC_OUTPUT_COMMANDS (extra-cmds [, init-cmds]) 宏: AC_PROG_MAKE_SET 每个Autoconf生成的c...
  • GDB支持哪些语言?

    2530 2021-04-24 《GDB 简介》
    What Languages does GDB Support? SofTool.CN 译:GDB可以支持哪些语言哪? GDB supports the following languages (in alphabetical order): SofTool.CN 译:GDB可以支持下面的语言(按字母顺序排列): Ada Assemb...