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.
12 lines
245 B
12 lines
245 B
13 years ago
|
.globl _jump_to_bootcode
|
||
|
.type _jump_to_bootcode, @function
|
||
|
_jump_to_bootcode:
|
||
|
mov.l stack_start, r0
|
||
|
mov.l @r0, sp
|
||
|
mov.l eeprom_start, r0
|
||
|
mov.l @r0, r0
|
||
|
jmp @r0
|
||
|
.align 4
|
||
|
stack_start: .long 0x00000004
|
||
|
eeprom_start: .long 0x00000000
|