fpmathfunc.s
来自「*****汇编语言程序设计 源代码*****」· S 代码 · 共 24 行
S
24 行
# fpmathfunc.s - An example of reading multiple input values.section .text.type fpmathfunc, @function.globl fpmathfuncfpmathfunc: pushl %ebp movl %esp, %ebp flds 8(%ebp) fidiv 12(%ebp) flds 16(%ebp) flds 20(%ebp) fmul %st(1), %st(0) fadd %st(2), %st(0) flds 24(%ebp) fimul 28(%ebp) flds 32(%ebp) flds 36(%ebp) fdivrp fsubr %st(1), %st(0) fdivr %st(2), %st(0) movl %ebp, %esp popl %ebp ret
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?