You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
40 lines
1.5 KiB
C
40 lines
1.5 KiB
C
15 years ago
|
/***********************************************************************/
|
||
|
/* */
|
||
|
/* FILE :vecttbl.c */
|
||
|
/* DATE :Sun, Dec 27, 2009 */
|
||
|
/* DESCRIPTION :Initialize of Vector Table */
|
||
|
/* CPU TYPE :Other */
|
||
|
/* */
|
||
|
/* This file is generated by Renesas Project Generator (Ver.4.16). */
|
||
|
/* */
|
||
|
/***********************************************************************/
|
||
|
|
||
|
|
||
|
|
||
|
#include "vect.h"
|
||
|
|
||
|
#pragma section VECTTBL
|
||
|
|
||
|
void *RESET_Vectors[] = {
|
||
|
//;<<VECTOR DATA START (POWER ON RESET)>>
|
||
|
//;0 Power On Reset PC
|
||
|
(void*) PowerON_Reset_PC,
|
||
|
//;<<VECTOR DATA END (POWER ON RESET)>>
|
||
|
// 1 Power On Reset SP
|
||
|
__secend("S"),
|
||
|
//;<<VECTOR DATA START (MANUAL RESET)>>
|
||
|
//;2 Manual Reset PC
|
||
|
(void*) Manual_Reset_PC,
|
||
|
//;<<VECTOR DATA END (MANUAL RESET)>>
|
||
|
// 3 Manual Reset SP
|
||
|
__secend("S")
|
||
|
|
||
|
};
|
||
|
#pragma section INTTBL
|
||
|
void *INT_Vectors[] = {
|
||
|
// 4 Illegal code
|
||
|
(void*) INT_Illegal_code,
|
||
|
// xx Reserved
|
||
|
(void*) Dummy
|
||
|
};
|