git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@8523 35acf78f-673a-0410-8e92-d51de3d6d3f4
This commit is contained in:
parent
715d641750
commit
e12692b914
|
@ -56,7 +56,7 @@ _IVOR12:
|
||||||
_IVOR13:
|
_IVOR13:
|
||||||
_IVOR14:
|
_IVOR14:
|
||||||
_IVOR15:
|
_IVOR15:
|
||||||
.global _unhandled_irq
|
.global _unhandled_exception
|
||||||
_unhandled_exception:
|
_unhandled_exception:
|
||||||
se_b _unhandled_exception
|
se_b _unhandled_exception
|
||||||
|
|
||||||
|
|
|
@ -224,21 +224,18 @@ _boot_address:
|
||||||
|
|
||||||
/* Default main exit code, infinite loop.*/
|
/* Default main exit code, infinite loop.*/
|
||||||
.weak __default_exit
|
.weak __default_exit
|
||||||
.globl __default_exit
|
|
||||||
.type __default_exit, @function
|
.type __default_exit, @function
|
||||||
__default_exit:
|
__default_exit:
|
||||||
b __default_exit
|
b __default_exit
|
||||||
|
|
||||||
/* Default early initialization code, none.*/
|
/* Default early initialization code, none.*/
|
||||||
.weak __early_init
|
.weak __early_init
|
||||||
.globl __early_init
|
|
||||||
.type __early_init, @function
|
.type __early_init, @function
|
||||||
__early_init:
|
__early_init:
|
||||||
blr
|
blr
|
||||||
|
|
||||||
/* Default late initialization code, none.*/
|
/* Default late initialization code, none.*/
|
||||||
.weak __late_init
|
.weak __late_init
|
||||||
.globl __late_init
|
|
||||||
.type __late_init, @function
|
.type __late_init, @function
|
||||||
__late_init:
|
__late_init:
|
||||||
blr
|
blr
|
||||||
|
|
|
@ -799,6 +799,15 @@ _vectors:
|
||||||
#if PPC_NUM_VECTORS > 1008
|
#if PPC_NUM_VECTORS > 1008
|
||||||
.long vector1008, vector1009, vector1010, vector1011
|
.long vector1008, vector1009, vector1010, vector1011
|
||||||
#endif
|
#endif
|
||||||
|
#if PPC_NUM_VECTORS > 1012
|
||||||
|
.long vector1012, vector1013, vector1014, vector1015
|
||||||
|
#endif
|
||||||
|
#if PPC_NUM_VECTORS > 1016
|
||||||
|
.long vector1016, vector1017, vector1018, vector1019
|
||||||
|
#endif
|
||||||
|
#if PPC_NUM_VECTORS > 1020
|
||||||
|
.long vector1020, vector1021, vector1022, vector1023
|
||||||
|
#endif
|
||||||
|
|
||||||
.text
|
.text
|
||||||
.align 2
|
.align 2
|
||||||
|
@ -1560,6 +1569,15 @@ _vectors:
|
||||||
#if PPC_NUM_VECTORS > 1008
|
#if PPC_NUM_VECTORS > 1008
|
||||||
.weak vector1008, vector1009, vector1010, vector1011
|
.weak vector1008, vector1009, vector1010, vector1011
|
||||||
#endif
|
#endif
|
||||||
|
#if PPC_NUM_VECTORS > 1012
|
||||||
|
.weak vector1012, vector1013, vector1014, vector1015
|
||||||
|
#endif
|
||||||
|
#if PPC_NUM_VECTORS > 1016
|
||||||
|
.weak vector1016, vector1017, vector1018, vector1019
|
||||||
|
#endif
|
||||||
|
#if PPC_NUM_VECTORS > 1020
|
||||||
|
.weak vector1020, vector1021, vector1022, vector1023
|
||||||
|
#endif
|
||||||
|
|
||||||
vector0:
|
vector0:
|
||||||
vector1:
|
vector1:
|
||||||
|
@ -2585,6 +2603,7 @@ vector1020:
|
||||||
vector1021:
|
vector1021:
|
||||||
vector1022:
|
vector1022:
|
||||||
vector1023:
|
vector1023:
|
||||||
|
b _unhandled_irq
|
||||||
|
|
||||||
.weak _unhandled_irq
|
.weak _unhandled_irq
|
||||||
.type _unhandled_irq, @function
|
.type _unhandled_irq, @function
|
||||||
|
|
|
@ -194,7 +194,6 @@ IVORS:
|
||||||
.weak _IVOR0, _IVOR1, _IVOR2, _IVOR3, _IVOR4, _IVOR5
|
.weak _IVOR0, _IVOR1, _IVOR2, _IVOR3, _IVOR4, _IVOR5
|
||||||
.weak _IVOR6, _IVOR7, _IVOR8, _IVOR9, _IVOR10, _IVOR11
|
.weak _IVOR6, _IVOR7, _IVOR8, _IVOR9, _IVOR10, _IVOR11
|
||||||
.weak _IVOR12, _IVOR13, _IVOR14, _IVOR15
|
.weak _IVOR12, _IVOR13, _IVOR14, _IVOR15
|
||||||
.weak _unhandled_exception
|
|
||||||
_IVOR0:
|
_IVOR0:
|
||||||
_IVOR1:
|
_IVOR1:
|
||||||
_IVOR2:
|
_IVOR2:
|
||||||
|
@ -209,6 +208,7 @@ _IVOR12:
|
||||||
_IVOR13:
|
_IVOR13:
|
||||||
_IVOR14:
|
_IVOR14:
|
||||||
_IVOR15:
|
_IVOR15:
|
||||||
|
.global _unhandled_exception
|
||||||
_unhandled_exception:
|
_unhandled_exception:
|
||||||
b _unhandled_exception
|
b _unhandled_exception
|
||||||
|
|
||||||
|
|
|
@ -194,7 +194,6 @@ IVORS:
|
||||||
.weak _IVOR0, _IVOR1, _IVOR2, _IVOR3, _IVOR4, _IVOR5
|
.weak _IVOR0, _IVOR1, _IVOR2, _IVOR3, _IVOR4, _IVOR5
|
||||||
.weak _IVOR6, _IVOR7, _IVOR8, _IVOR9, _IVOR10, _IVOR11
|
.weak _IVOR6, _IVOR7, _IVOR8, _IVOR9, _IVOR10, _IVOR11
|
||||||
.weak _IVOR12, _IVOR13, _IVOR14, _IVOR15
|
.weak _IVOR12, _IVOR13, _IVOR14, _IVOR15
|
||||||
.weak _unhandled_exception
|
|
||||||
_IVOR0:
|
_IVOR0:
|
||||||
_IVOR1:
|
_IVOR1:
|
||||||
_IVOR2:
|
_IVOR2:
|
||||||
|
@ -209,6 +208,7 @@ _IVOR12:
|
||||||
_IVOR13:
|
_IVOR13:
|
||||||
_IVOR14:
|
_IVOR14:
|
||||||
_IVOR15:
|
_IVOR15:
|
||||||
|
.global _unhandled_exception
|
||||||
_unhandled_exception:
|
_unhandled_exception:
|
||||||
b _unhandled_exception
|
b _unhandled_exception
|
||||||
|
|
||||||
|
|
|
@ -194,7 +194,6 @@ IVORS:
|
||||||
.weak _IVOR0, _IVOR1, _IVOR2, _IVOR3, _IVOR4, _IVOR5
|
.weak _IVOR0, _IVOR1, _IVOR2, _IVOR3, _IVOR4, _IVOR5
|
||||||
.weak _IVOR6, _IVOR7, _IVOR8, _IVOR9, _IVOR10, _IVOR11
|
.weak _IVOR6, _IVOR7, _IVOR8, _IVOR9, _IVOR10, _IVOR11
|
||||||
.weak _IVOR12, _IVOR13, _IVOR14, _IVOR15
|
.weak _IVOR12, _IVOR13, _IVOR14, _IVOR15
|
||||||
.weak _unhandled_exception
|
|
||||||
_IVOR0:
|
_IVOR0:
|
||||||
_IVOR1:
|
_IVOR1:
|
||||||
_IVOR2:
|
_IVOR2:
|
||||||
|
@ -209,6 +208,7 @@ _IVOR12:
|
||||||
_IVOR13:
|
_IVOR13:
|
||||||
_IVOR14:
|
_IVOR14:
|
||||||
_IVOR15:
|
_IVOR15:
|
||||||
|
.global _unhandled_exception
|
||||||
_unhandled_exception:
|
_unhandled_exception:
|
||||||
b _unhandled_exception
|
b _unhandled_exception
|
||||||
|
|
||||||
|
|
|
@ -194,7 +194,6 @@ IVORS:
|
||||||
.weak _IVOR0, _IVOR1, _IVOR2, _IVOR3, _IVOR4, _IVOR5
|
.weak _IVOR0, _IVOR1, _IVOR2, _IVOR3, _IVOR4, _IVOR5
|
||||||
.weak _IVOR6, _IVOR7, _IVOR8, _IVOR9, _IVOR10, _IVOR11
|
.weak _IVOR6, _IVOR7, _IVOR8, _IVOR9, _IVOR10, _IVOR11
|
||||||
.weak _IVOR12, _IVOR13, _IVOR14, _IVOR15
|
.weak _IVOR12, _IVOR13, _IVOR14, _IVOR15
|
||||||
.weak _unhandled_exception
|
|
||||||
_IVOR0:
|
_IVOR0:
|
||||||
_IVOR1:
|
_IVOR1:
|
||||||
_IVOR2:
|
_IVOR2:
|
||||||
|
@ -209,6 +208,7 @@ _IVOR12:
|
||||||
_IVOR13:
|
_IVOR13:
|
||||||
_IVOR14:
|
_IVOR14:
|
||||||
_IVOR15:
|
_IVOR15:
|
||||||
|
.global _unhandled_exception
|
||||||
_unhandled_exception:
|
_unhandled_exception:
|
||||||
b _unhandled_exception
|
b _unhandled_exception
|
||||||
|
|
||||||
|
|
|
@ -188,7 +188,6 @@ IVOR15: b _IVOR15
|
||||||
.weak _IVOR0, _IVOR1, _IVOR2, _IVOR3, _IVOR4, _IVOR5
|
.weak _IVOR0, _IVOR1, _IVOR2, _IVOR3, _IVOR4, _IVOR5
|
||||||
.weak _IVOR6, _IVOR7, _IVOR8, _IVOR9, _IVOR10, _IVOR11
|
.weak _IVOR6, _IVOR7, _IVOR8, _IVOR9, _IVOR10, _IVOR11
|
||||||
.weak _IVOR12, _IVOR13, _IVOR14, _IVOR15
|
.weak _IVOR12, _IVOR13, _IVOR14, _IVOR15
|
||||||
.weak _unhandled_exception
|
|
||||||
_IVOR0:
|
_IVOR0:
|
||||||
_IVOR1:
|
_IVOR1:
|
||||||
_IVOR2:
|
_IVOR2:
|
||||||
|
@ -203,6 +202,7 @@ _IVOR12:
|
||||||
_IVOR13:
|
_IVOR13:
|
||||||
_IVOR14:
|
_IVOR14:
|
||||||
_IVOR15:
|
_IVOR15:
|
||||||
|
.global _unhandled_exception
|
||||||
_unhandled_exception:
|
_unhandled_exception:
|
||||||
b _unhandled_exception
|
b _unhandled_exception
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue