locore.s
来自「Linux内核源代码 为压缩文件 是<<Linux内核>>」· S 代码 · 共 31 行
S
31 行
/* * locore.S */#include <asm/asm.h>#include <asm/regdef.h>#include <asm/mipsregs.h> .text/* * Simple general exception handling routine. This one is used for the * Memory sizing routine for pmax machines. HK */NESTED(genexcept_early, 0, sp) .set noat .set noreorder mfc0 k0, CP0_STATUS la k1, mem_err sw k0,0(k1) mfc0 k0, CP0_EPC nop addiu k0,4 # skip the causing instruction jr k0 rfeEND(genexcept_early)
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?