vectors.c

来自「基于FREEESCLAE LV8 的ADF7020通信程序」· C语言 代码 · 共 70 行

C
70
字号
/** ###################################################################
**     THIS BEAN MODULE IS GENERATED BY THE TOOL. DO NOT MODIFY IT.
**     Filename  : Vectors.C
**     Project   : lv8
**     Processor : MC68HC908LV8CFA
**     Version   : Bean 01.078, Driver 01.36, CPU db: 2.89.060
**     Compiler  : CodeWarrior HC08 C Compiler
**     Date/Time : 2006-8-18, 20:00
**     Abstract  :
**         This bean "MC68HC908LV8_52" implements properties, methods,
**         and events of the CPU.
**     Settings  :
**         Clock setting
**             External clock      : 4.9152 MHz
**             CPU mode selection  : 0
**             Initialization interrupt priority : 1
**             Stop instruction enabled : no
**             LVI module          : yes
**
**         Speed modes
**             High speed clock    : Main clock frequency / 1
**             Internal bus clock  : 1.2288 MHz
**             Low speed mode      : Disabled
**             Slow speed mode     : Disabled
**
**     (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 "LCD1.h"

extern void _EntryPoint(void);

void (* const _vect[])() @0xFFDA = {   // Interrupt vector table
  Cpu_Interrupt,                       /* Interrupt no.  0 (0xFFDA) (Unused) - ivINT_ADC */
  Cpu_Interrupt,                       /* Interrupt no.  1 (0xFFDC) (Unused) - ivINT_KBD */
  Cpu_Interrupt,                       /* Interrupt no.  2 (0xFFDE) (Unused) - ivReserved2 */
  Cpu_Interrupt,                       /* Interrupt no.  3 (0xFFE0) (Unused) - ivReserved3 */
  Cpu_Interrupt,                       /* Interrupt no.  4 (0xFFE2) (Unused) - ivReserved4 */
  Cpu_Interrupt,                       /* Interrupt no.  5 (0xFFE4) (Unused) - ivReserved5 */
  Cpu_Interrupt,                       /* Interrupt no.  6 (0xFFE6) (Unused) - ivReserved6 */
  Cpu_Interrupt,                       /* Interrupt no.  7 (0xFFE8) (Unused) - ivReserved7 */
  Cpu_Interrupt,                       /* Interrupt no.  8 (0xFFEA) (Unused) - ivINT_TIM2Ovr */
  Cpu_Interrupt,                       /* Interrupt no.  9 (0xFFEC) (Unused) - ivINT_TIM2CH1 */
  Cpu_Interrupt,                       /* Interrupt no. 10 (0xFFEE) (Unused) - ivINT_TIM2CH0 */
  Cpu_Interrupt,                       /* Interrupt no. 11 (0xFFF0) (Unused) - ivINT_TIM1Ovr */
  Cpu_Interrupt,                       /* Interrupt no. 12 (0xFFF2) (Unused) - ivINT_TIM1CH1 */
  Cpu_Interrupt,                       /* Interrupt no. 13 (0xFFF4) (Unused) - ivINT_TIM1CH0 */
  Cpu_Interrupt,                       /* Interrupt no. 14 (0xFFF6) (Unused) - ivINT_PLL */
  Cpu_Interrupt,                       /* Interrupt no. 15 (0xFFF8) (Unused) - ivINT_LVI */
  Cpu_Interrupt,                       /* Interrupt no. 16 (0xFFFA) (Unused) - ivINT_IRQ */
  Cpu_SWIInterrupt,                    /* Interrupt no. 17 (0xFFFC) (Used)   - ivINT_SWI */
  _EntryPoint                          /* Interrupt no. 18 (0xFFFE) (Used)   - ivINT_RESET */
};

/*
** ###################################################################
**
**     This file was created by UNIS Processor Expert 2.98 [03.80]
**     for the Freescale HC08 series of microcontrollers.
**
** ###################################################################
*/

⌨️ 快捷键说明

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