guowenxue
2020-08-21 c8030debe80cfa22c50e2715070db15a68b3f93d
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
/********************************************************************************************
 *        File:  interrupt.c
 *     Version:  1.0.0
 *   Copyright:  2011 (c) Guo Wenxue <guowenxue@gmail.com>
 * Description:  The CPU interrupt vector table depends on function, called in start.S 
 *   ChangeLog:  1, Release initial version on "Tue Jul 12 16:43:18 CST 2011"
 *
 *******************************************************************************************/
 
#include <common.h>
 
void do_undefined_instruction(void)
{
 
}
 
void do_software_interrupt(void)
{
}
 
void do_prefetch_abort(void)
{
}
 
void do_data_abort(void)
{
}
 
void do_not_used(void)
{
}
 
void do_irq(void)
{
}
 
void do_fiq(void)
{
}