?? loop.s
字號:
# loop.s - An example of the loop instruction.section .dataoutput: .asciz "The value is: %d\n".section .text.globl _start_start: movl $100, %ecx movl $0, %eaxloop1: addl %ecx, %eax loop loop1 pushl %eax pushl $output call printf add $8, %esp movl $1, %eax movl $0, %ebx int $0x80
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -