testfunc.s

来自「*****汇编语言程序设计 源代码*****」· S 代码 · 共 15 行

S
15
字号
# testfunc.s - An example of reading input values wrong.section .text.type testfunc, @function.globl testfunctestfunc:   pushl %ebp   movl %esp, %ebp   fldl 8(%ebp)   fimul 16(%ebp)   movl %ebp, %esp   popl %ebp   ret

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?