📄 stacktest.s
字号:
# stacktest.s - An example of working with the FPU stack.section .datavalue1: .int 40value2: .float 92.4405value3: .double 221.440321.section .bss .lcomm int1, 4 .lcomm control, 2 .lcomm status, 2 .lcomm result, 4.section .text.globl _start_start: nop finit fstcw control fstsw status filds value1 fists int1 flds value2 fldl value3 fst %st(4) fxch %st(1) fstps result movl $1, %eax movl $0, %ebx int $0x80
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -