📄 cfunctest.s
字号:
# cfunctest.s - An example of using C functions */.section .dataoutput: .asciz "This is a test\n".section .text.globl _start_start: movl $10, %ecxloop1: pushl %ecx pushl $output call printf addl $4, %esp pushl $5 call sleep addl $4, %esp popl %ecx loop loop1 pushl $0 call exit
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -