iceexcp.s

来自「mips架构的bootloader,99左右的版本 但源代码现在没人更新了」· S 代码 · 共 31 行

S
31
字号
/************************************************************* * File: lib/iceexcp.s * Purpose: Part of C runtime library * Author: Phil Bunce (pjb@carmel.com) * Revision History: *	970304	Start of revision history */#include <mips.h>/**************************************************************  ice_ehandler:*	This is the exception handler that gets copied to RAM.*	If the application uses exceptions, it will use this*	code to transfer control to the IceKernel for all *	non-application exceptions.*/	.globl ice_ehandler	.globl ice_ehandler_end	.ent ice_ehandlerice_ehandler:	# check for app-specific exceptions	#	#	# else; transfer control to the ICEKernel	li	k0,0xbfc00180	j	k0ice_ehandler_end:	.end ice_ehandler

⌨️ 快捷键说明

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