fscaletest.s
来自「非常好的汇编代码示例」· S 代码 · 共 30 行
S
30 行
# fscaletest.s - An example of the FSCALE instruction.section .datavalue: .float 10.0scale1: .float 2.0scale2: .float -2.0.section .bss .lcomm result1, 4 .lcomm result2, 4.section .text.globl _start_start: nop finit flds scale1 flds value fscale fsts result1 flds scale2 flds value fscale fsts result2 movl $1, %eax movl $0, %ebx int $0x80
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?