asm.h
来自「bootup code for Barebone, it s useful fo」· C头文件 代码 · 共 40 行
H
40 行
/* * asmmacro.h: Assembler macros to make things easier to read. * * Copyright (C) 1996 David S. Miller (dm@engr.sgi.com) * Copyright (C) 1998 Ralf Baechle */#include "regdef.h"#include "cp0regdef.h"/* * LEAF - declare leaf routine */#define LEAF(symbol) \ .globl symbol; \ .align 2; \ .type symbol,@function; \ .ent symbol,0; \symbol: .frame sp,0,ra/* * NESTED - declare nested routine entry point */#define NESTED(symbol, framesize, rpc) \ .globl symbol; \ .align 2; \ .type symbol,@function; \ .ent symbol,0; \symbol: .frame sp, framesize, rpc/* * END - mark end of function */#define END(function) \ .end function; \ .size function,.-function
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?