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.
19 lines
517 B
ArmAsm
19 lines
517 B
ArmAsm
|
2 years ago
|
; startup code for TM4C MCU
|
||
|
|
|
||
|
2 years ago
|
; NOTE: this is an INCOMPLETE startup code that does not work yet.
|
||
|
|
; It does not yet implement the Reset_Handler.
|
||
|
|
;
|
||
|
2 years ago
|
AREA RESET, DATA, READONLY
|
||
|
|
EXPORT __Vectors
|
||
|
|
EXPORT __Vectors_End
|
||
|
|
EXPORT __Vectors_Size
|
||
|
|
|
||
|
|
__Vectors DCD 0x20004000 ; Top of Stack
|
||
|
2 years ago
|
DCD 0x9 ; Reset Handler <== NOT implemented yet
|
||
|
2 years ago
|
|
||
|
|
__Vectors_End
|
||
|
|
|
||
|
|
__Vectors_Size EQU __Vectors_End - __Vectors
|
||
|
|
|
||
|
|
END
|