📄 microblaze_exception_handler.c
字号:
////////////////////////////////////////////////////////////////////////////////// Copyright (c) 2004 Xilinx, Inc. All rights reserved. // // Xilinx, Inc. // XILINX IS PROVIDING THIS DESIGN, CODE, OR INFORMATION "AS IS" AS A // COURTESY TO YOU. BY PROVIDING THIS DESIGN, CODE, OR INFORMATION AS // ONE POSSIBLE IMPLEMENTATION OF THIS FEATURE, APPLICATION OR // STANDARD, XILINX IS MAKING NO REPRESENTATION THAT THIS IMPLEMENTATION // IS FREE FROM ANY CLAIMS OF INFRINGEMENT, AND YOU ARE RESPONSIBLE // FOR OBTAINING ANY RIGHTS YOU MAY REQUIRE FOR YOUR IMPLEMENTATION. // XILINX EXPRESSLY DISCLAIMS ANY WARRANTY WHATSOEVER WITH RESPECT TO // THE ADEQUACY OF THE IMPLEMENTATION, INCLUDING BUT NOT LIMITED TO // ANY WARRANTIES OR REPRESENTATIONS THAT THIS IMPLEMENTATION IS FREE // FROM CLAIMS OF INFRINGEMENT, IMPLIED WARRANTIES OF MERCHANTABILITY // AND FITNESS FOR A PARTICULAR PURPOSE.//// $Id: microblaze_exception_handler.c,v 1.3.8.6 2005/11/15 23:40:58 salindac Exp $/////////////////////////////////////////////////////////////////////////////////*****************************************************************************//**** @file microblaze_exception_handler.c** This file contains exception handler registration routines for* the MicroBlaze processor.** <pre>* MODIFICATION HISTORY:** Ver Date Changes* ----- -------- -----------------------------------------------* 1.00b 06/24/04 First release* </pre>*******************************************************************************//***************************** Include Files *********************************/#include "microblaze_exceptions_i.h"/************************** Constant Definitions *****************************//**************************** Type Definitions *******************************//***************** Macros (Inline Functions) Definitions *********************//************************** Function Prototypes ******************************//************************** Variable Definitions *****************************/extern MB_ExceptionVectorTableEntry MB_ExceptionVectorTable[];/****************************************************************************//*****************************************************************************//**** Registers an exception handler for the MicroBlaze. The* argument provided in this call as the DataPtr is used as the argument* for the handler when it is called.** @param ExceptionId is the id of the exception to register this handler * for.* @param Top level handler.* @param DataPtr is a reference to data that will be passed to the handler* when it gets called.* @return None.** @note** None.*****************************************************************************/void microblaze_register_exception_handler(Xuint8 ExceptionId, XExceptionHandler Handler, void *DataPtr){ MB_ExceptionVectorTable[ExceptionId - 1].Handler = Handler; MB_ExceptionVectorTable[ExceptionId - 1].CallBackRef = DataPtr;}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -