vectors.c

来自「用freescale 8bitMCU做的触摸屏软件」· C语言 代码 · 共 67 行

C
67
字号
/** ###################################################################
**     THIS BEAN MODULE IS GENERATED BY THE TOOL. DO NOT MODIFY IT.
**     Filename  : Vectors.C
**     Project   : touchpanal
**     Processor : MC9S08QG8CDT
**     Version   : Bean 01.250, Driver 01.27, CPU db: 2.87.115
**     Compiler  : CodeWarrior HCS08 C Compiler
**     Date/Time : 2007-10-10, 11:00
**     Abstract  :
**         This bean "MC9S08QG8_16" contains initialization of the
**         CPU and provides basic methods and events for CPU core
**         settings.
**     Settings  :
**
**
**     (c) Copyright UNIS, spol. s r.o. 1997-2006
**     UNIS, spol. s r.o.
**     Jundrovska 33
**     624 00 Brno
**     Czech Republic
**     http      : www.processorexpert.com
**     mail      : info@processorexpert.com
** ###################################################################*/


#include "Cpu.h"
#include "AS1.h"
#include "TI1.h"
#include "KBI1.h"
#include "SM1.h"
extern near void _EntryPoint(void);

void (* near const _vect[])() @0xFFD0 = { /* Interrupt vector table */
         Cpu_Interrupt,                /* Int.no. 23 Vrti (at FFD0)                  Unassigned */
         Cpu_Interrupt,                /* Int.no. 22 Reserved2 (at FFD2)             Unassigned */
         Cpu_Interrupt,                /* Int.no. 21 Reserved3 (at FFD4)             Unassigned */
         Cpu_Interrupt,                /* Int.no. 20 Vacmp (at FFD6)                 Unassigned */
         Cpu_Interrupt,                /* Int.no. 19 Vadc (at FFD8)                  Unassigned */
         PENIRQ,                       /* Int.no. 18 Vkeyboard (at FFDA)             Used */
         Cpu_Interrupt,                /* Int.no. 17 Viic (at FFDC)                  Unassigned */
         AS1_InterruptTx,              /* Int.no. 16 Vscitx (at FFDE)                Used */
         AS1_InterruptRx,              /* Int.no. 15 Vscirx (at FFE0)                Used */
         AS1_InterruptError,           /* Int.no. 14 Vscierr (at FFE2)               Used */
         SM1_Interrupt,                /* Int.no. 13 Vspi (at FFE4)                  Used */
         TI1_Interrupt,                /* Int.no. 12 Vmtim (at FFE6)                 Used */
         Cpu_Interrupt,                /* Int.no. 11 Reserved13 (at FFE8)            Unassigned */
         Cpu_Interrupt,                /* Int.no. 10 Reserved14 (at FFEA)            Unassigned */
         Cpu_Interrupt,                /* Int.no.  9 Reserved15 (at FFEC)            Unassigned */
         Cpu_Interrupt,                /* Int.no.  8 Reserved16 (at FFEE)            Unassigned */
         Cpu_Interrupt,                /* Int.no.  7 Vtpmovf (at FFF0)               Unassigned */
         Cpu_Interrupt,                /* Int.no.  6 Vtpmch1 (at FFF2)               Unassigned */
         Cpu_Interrupt,                /* Int.no.  5 Vtpmch0 (at FFF4)               Unassigned */
         Cpu_Interrupt,                /* Int.no.  4 Reserved20 (at FFF6)            Unassigned */
         Cpu_Interrupt,                /* Int.no.  3 Vlvd (at FFF8)                  Unassigned */
         Cpu_Interrupt,                /* Int.no.  2 Virq (at FFFA)                  Unassigned */
         Cpu_Interrupt,                /* Int.no.  1 Vswi (at FFFC)                  Unassigned */
         _EntryPoint                   /* Int.no.  0 Vreset (at FFFE)                Reset vector */
 };
/*
** ###################################################################
**
**     This file was created by UNIS Processor Expert 3.00 [03.89]
**     for the Freescale HCS08 series of microcontrollers.
**
** ###################################################################
*/

⌨️ 快捷键说明

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