Files
raspberrypi/bootloader03/start.s
David Welch b0ebc8d38b adding bootloader03. another xmodem based bootloader, uses a state machine so should be a little
more tolerant of errors (which you shouldnt get anyway).
2012-05-28 10:47:35 -04:00

20 lines
176 B
ArmAsm

.globl _start
_start:
bl notmain
hang: b hang
.globl PUT32
PUT32:
str r1,[r0]
bx lr
.globl GET32
GET32:
ldr r0,[r0]
bx lr
.globl dummy
dummy:
bx lr