📄 s12x_vectors.h
字号:
/******************************************************************************
Copyright (c) Freescale 2006
File Name : $RCSfile: s12x_vectors.h,v $
Engineer : $Author: r27624/r58711/r32151 $
Location : EKB
Date Created : 08/10/2003
Current Revision : $Revision: 1.5 $
Notes :
*******************************************************************
* File created by: Freescale East Kilbride MCD Applications Group *
*******************************************************************
******************************************************************************/
/*===========================================================================*/
/* Freescale reserves the right to make changes without further notice to any*/
/* product herein to improve reliability, function, or design. Freescale does*/
/* not assume any liability arising out of the application or use of any */
/* product, circuit, or software described herein; neither does it convey */
/* any license under its patent rights nor the rights of others. Freescale*/
/* products are not designed, intended, or authorized for use as components */
/* in systems intended for surgical implant into the body, or other */
/* applications intended to support life, or for any other application in */
/* which the failure of the Freescale product could create a situation where*/
/* personal injury or death may occur. Should Buyer purchase or use Freescale*/
/* products for any such intended or unauthorized application, Buyer shall */
/* indemnify and hold Freescale and its officers, employees, subsidiaries,*/
/* affiliates, and distributors harmless against all claims costs, damages, */
/* and expenses, and reasonable attorney fees arising out of, directly or */
/* indirectly, any claim of personal injury or death associated with such */
/* unintended or unauthorized use, even if such claim alleges that Freescale*/
/* was negligent regarding the design or manufacture of the part. Freescale*/
/* and the Freescale logo* are registered trademarks of Freescale Ltd. */
/*****************************************************************************/
#ifndef S12X_VECTORS_H /* prevent duplicated includes */
#define S12X_VECTORS_H
/************************* Include Files *************************************/
/************************* typedefs ******************************************/
typedef void (*near tIsrFunc)(void);
/************************* function prototypes *******************************/
//#pragma CODE_SEG __NEAR_SEG NON_BANKED
#include <non_bank.sgm>
void UnallocatedISR(void);
void SpuriousISR(void);
/************************* #defines ******************************************/
#define ReservedISR (tIsrFunc)0xFFFF
#define FIRST_VEC 0x3C /* first vector on S12XE100 configurable for priority
and/or routing is ATD1 compare at offset 3Ch. */
/************************* Global Variables **********************************/
#pragma DATA_SEG DEFAULT
#pragma CONST_SEG __NEAR_SEG DEFAULT
extern const unsigned char InterruptConfigurationTable[];
#pragma CONST_SEG __NEAR_SEG S12_VEC_TABLE
extern const void (*const near _vectab[])(void);
#endif /* S12X_VECTORS_H */
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -