📄 fpstate.s
字号:
/************************************************************* * File: lib/fpstate.s * Purpose: Part of C runtime library * Author: Phil Bunce (pjb@carmel.com) * Revision History: * 970304 Start of revision history */#include "mips.h"/************************************************************** fpstatesz & fpstate* Used by clients who wish to call the PMON resident routines* of the same name.*/ .globl fpstatesz .ent fpstateszfpstatesz: li t0,0xbfc00200 lw t0,13*4(t0) j t0 .end fpstatesz .globl fpstate .ent fpstatefpstate: # fpstate(int op,long *p) op=0=get op=1=put li t0,0xbfc00200 lw t0,15*4(t0) j t0 .end fpstate
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -