⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 vectors.c

📁 GCC 做的MOTOROLA 的单片机 振荡程序
💻 C
字号:
/** ###################################################################
**     THIS BEAN MODULE IS GENERATED BY THE TOOL. DO NOT MODIFY IT.
**     Filename  : Vectors.C
**     Project   : LowFreqSG
**     Processor : MC68HC908LV8CFA
**     Version   : Bean 01.078, Driver 01.36, CPU db: 2.89.060
**     Compiler  : CodeWarrior HC08 C Compiler
**     Date/Time : 2006-9-6, 11:29
**     Abstract  :
**         This bean "MC68HC908LV8_52" implements properties, methods,
**         and events of the CPU.
**     Settings  :
**         Clock setting
**             External clock      : 0.032768 MHz
**             CPU mode selection  : 1
**             Initialization interrupt priority : 0
**             Stop instruction enabled : no
**             LVI module          : no
**
**         Speed modes
**             High speed clock    : Main clock frequency / 1
**             Internal bus clock  : 7.995392 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"
#include "TO1.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_Interrupt,                       /* Interrupt no. 17 (0xFFFC) (Unused) - 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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -