?? arm.h
字號(hào):
/*
* file:
* arm.h
* description:
* include file of architecture.
*/
#ifndef __ARM_H__
#define __ARM_H__
#ifdef __cplusplus
extern "C" {
#endif
/*
* context for switch thread
*/
typedef struct _thread_context
{
unsigned int _cpsr;
unsigned int _r4;
unsigned int _r5;
unsigned int _r6;
unsigned int _r7;
unsigned int _r8;
unsigned int _r9;
unsigned int _r10;
unsigned int _r11;
unsigned int _ip;
unsigned int _sp;
unsigned int _lr;
}thread_context;
#ifdef __cplusplus
}
#endif
#endif /* __ARM_H__ */
?? 快捷鍵說(shuō)明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -