paramtest2.s
来自「*****汇编语言程序设计 源代码*****」· S 代码 · 共 22 行
S
22 行
# paramtest2.s - Listing system environment variables.section .dataoutput: .asciz "%s\n".section .text.globl _start_start: movl %esp, %ebp addl $12, %ebploop1: cmpl $0, (%ebp) je endit pushl (%ebp) pushl $output call printf addl $12, %esp addl $4, %ebp loop loop1endit: pushl $0 call exit
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?