mulf.s
来自「操作系统SunOS 4.1.3版本的源码」· S 代码 · 共 16 行
S
16 行
! .seg "data"! .asciz "@(#)mulf.s 1.1 92/07/30 Copyr 1986 Sun Micro" .seg "text"#include <machine/asm_linkage.h> ENTRY(mulf) save %sp, -SA(WINDOWSIZE), %sp mov %i0, %o0 call .umul ! this will give us the high-order bits in %o1 mov %i1, %o1 add %o1, 1, %o1 srl %o1, 1, %i0 ret restore
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?