cmpxchgtest.s
来自「*****汇编语言程序设计 源代码*****」· S 代码 · 共 14 行
S
14 行
# cmpxchgtest.s - An example of the cmpxchg instruction.section .datadata: .int 10.section .text.globl _start_start: nop movl $10, %eax movl $5, %ebx cmpxchg %ebx, data movl $1, %eax int $0x80
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?