area.s
来自「不错的X86汇编代码示例」· S 代码 · 共 18 行
S
18 行
# area.s - The areacircumference function.section .text.type area, @function.globl areaarea: pushl %ebp movl %esp, %ebp subl $4, %esp fldpi filds 8(%ebp) fmul %st(0), %st(0) fmulp %st(0), %st(1) fstps -4(%ebp) movl -4(%ebp), %eax movl %ebp, %esp popl %ebp ret
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?