mirror of
https://github.com/FreeRTOS/FreeRTOS-Kernel.git
synced 2025-09-01 11:53:53 -04:00
Start a new demo for a new SH2A port.
This commit is contained in:
parent
0840882d46
commit
dbb3361ed9
18 changed files with 903 additions and 0 deletions
39
Demo/SuperH_SH7216_Renesas/RTOSDemo/vecttbl.c
Normal file
39
Demo/SuperH_SH7216_Renesas/RTOSDemo/vecttbl.c
Normal 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
|
||||
};
|
Loading…
Add table
Add a link
Reference in a new issue