📄 em_fif4.s
字号:
.sect .text; .sect .rom; .sect .data; .sect .bss.define .fif4 .sect .text.fif4: mov bx,sp flds 8(bx) fmuls 12(bx) ! multiply fld st ! copy result ftst ! test sign; handle negative separately fstsw ax wait sahf ! result of test in condition codes jb 1f frndint ! this one rounds (?) fcom st(1) ! compare with original; if <=, then OK fstsw ax wait sahf jbe 2f fisubs (one) ! else subtract 1 jmp 2f1: ! here, negative case frndint ! this one rounds (?) fcom st(1) ! compare with original; if >=, then OK fstsw ax wait sahf jae 2f fiadds (one) ! else add 12: fsub st(1),st ! subtract integer part mov bx,4(bx) fstps (bx) fstps 4(bx) wait ret
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -