int.h

来自「S3C2410上GPS模块的驱动代码.ADS1.2编译工程,附文档.」· C头文件 代码 · 共 37 行

H
37
字号
/**************************************************************************
*                                                                         *
*   PROJECT     :                                     			  *
*                                                                         *
*   MODULE      :                                                         *
*                                                                         *
*   AUTHOR      :                                                         *
*                 URL  :                                                  *
*                 EMAIL:                                                  *
*                                                                         *
*   PROCESSOR   : S3c2410x (32 bit ARM920T RISC core from Samsung)        *
*                                                                         *
*   IDE         : SDT 2.51 & ADS 1.2                                      *
*                                                                         *
*   DESCRIPTION :                                                         *
*                                                                         *
*                                                                         *
**************************************************************************/
#ifndef __INT_H__
#define __INT_H__

#include "consol.h"

void __HaltUndef(void);
void __HaltSwi(void);
void __HaltPabort(void);
void __HaltDabort(void);
void __HaltFiq(void);
void dummy(int irq);

typedef void (* Exception)(void);
typedef void __irq (* Isr)(void);
void __vInitHaltHandlers(void);
extern Isr ISRVector[32];
void ClearInt(void);

#endif

⌨️ 快捷键说明

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