📄 lwpmachdep.h
字号:
/* @(#) lwpmachdep.h 1.1 92/07/30 *//* Copyright (C) 1987. Sun Microsystems, Inc. */#ifndef __LWPMACHDEP_H__#define __LWPMACHDEP_H__#ifndef _TIME_#include <sys/time.h>#endif _TIME_/* registers saved in the context. Locals and %i's are found on the stack. */typedef struct machstate_t { union { double sparc_gdregs[4]; int sparc_gsregs[8]; } sparc_globals; /* g0-g7 */ union { double sparc_odregs[4]; int sparc_osregs[8]; } sparc_oregs; /* o0-o7 */ int sparc_pc; int sparc_npc; int sparc_psr; int sparc_y;} machstate_t;#endif __LWPMACHDEP_H__
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -