📄 cmptest.s
字号:
# cmptest.s - An example of using the CMP and JGE instructions.section .text.globl _start_start: nop movl $15, %eax movl $10, %ebx cmp %eax, %ebx jge greater movl $1, %eax int $0x80greater: movl $20, %ebx movl $1, %eax int $0x80
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -