📄 paramtest3.s
字号:
# paramtest3.s - An example of using command line parameters.section .dataoutput: .asciz "The area is: %f\n".section .bss .lcomm result, 4.section .text.globl _start_start: nop finit pushl 8(%esp) call atoi addl $4, %esp movl %eax, result fldpi filds result fmul %st(0), %st(0) fmul %st(1), %st(0) fstpl (%esp) pushl $output call printf addl $12, %esp pushl $0 call exit
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -