You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
371 B
18 lines
371 B
.section .vector_table, "x"
|
|
.global _Reset
|
|
_Reset:
|
|
b Reset_Handler
|
|
b . /* 0x4 Undefined Instruction */
|
|
b . /* 0x8 Software Interrupt */
|
|
b . /* 0xC Prefetch Abort */
|
|
b . /* 0x10 Data Abort */
|
|
b . /* 0x14 Reserved */
|
|
b . /* 0x18 IRQ */
|
|
b . /* 0x1C FIQ */
|
|
|
|
.section .text
|
|
Reset_Handler:
|
|
ldr r2, str1
|
|
b .
|
|
str1: .word 0xDEADBEEF
|