adctest.s
来自「汇编经典教程profession_assembly_language(Richa」· S 代码 · 共 25 行
S
25 行
# adctest.s - An example of using the ADC instruction.section .datadata1: .quad 7252051615data2: .quad 5732348928output: .asciz "The result is %qd\n".section .text.globl _start_start: movl data1, %ebx movl data1+4, %eax movl data2, %edx movl data2+4, %ecx addl %ebx, %edx adcl %eax, %ecx pushl %ecx pushl %edx push $output call printf addl $12, %esp pushl $0 call exit
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?