subtest3.s

来自「汇编经典教程profession_assembly_language(Richa」· S 代码 · 共 25 行

S
25
字号
# 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 + =
减小字号Ctrl + -
显示快捷键?