📄 aaatest.s
字号:
# aaatest.s - An example of using the AAA instruction.section .datavalue1: .byte 0x05, 0x02, 0x01, 0x08, 0x02value2: .byte 0x03, 0x03, 0x09, 0x02, 0x05.section .bss .lcomm sum, 6.section .text.globl _start_start: nop xor %edi, %edi movl $5, %ecx clcloop1: movb value1(, %edi, 1), %al adcb value2(, %edi, 1), %al aaa movb %al, sum(, %edi, 1) inc %edi loop loop1 adcb $0, sum(, %edi, 4) movl $1, %eax movl $0, %ebx int $0x80
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -