asmmacro.h

来自「这是leon3处理器的交叉编译链」· C头文件 代码 · 共 25 行

H
25
字号
#ifndef _INCLUDE_LEON_ASMMACRO_h#define _INCLUDE_LEON_ASMMACRO_h#include <asm-leon/leonstack.h>/* All trap entry points _must_ begin with this macro or else you * lose.  It makes sure the kernel has a proper window so that * c-code can be called. */#define SAVE_ALL_HEAD \	sethi	%hi(leonbare_trapsetup), %l4; \	jmpl	%l4 + %lo(leonbare_trapsetup), %l6;#define SAVE_ALL \	SAVE_ALL_HEAD \	 nop;/* All traps low-level code here must end with this macro. */#define RESTORE_ALL b leonbare_trapreturn; clr %l6;#define WRITE_PAUSE nop; nop; nop;#endif /* !_INCLUDE_LEON_STACK_h */

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?