Start a new demo for a new SH2A port.

This commit is contained in:
Richard Barry 2009-12-27 09:55:16 +00:00
parent 0840882d46
commit dbb3361ed9
18 changed files with 903 additions and 0 deletions

View file

@ -0,0 +1,39 @@
/***********************************************************************/
/* */
/* 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
};