📄 subtest3.s
字号:
# subtest3.s - An example of an overflow condition in a SUB instruction.section .dataoutput: .asciz "The result is %d\n".section .text.globl _start_start: movl $-1590876934, %ebx movl $1259230143, %eax subl %eax, %ebx jo over pushl %ebx pushl $output call printf add $8, %esp pushl $0 call exitover: pushl $0 pushl $output call printf add $8, %esp pushl $0 call exit
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -