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.
|
|
|
.globl _start
|
|
|
|
.type _start, @function
|
|
|
|
.section ".boot", "ax"
|
|
|
|
_start:
|
|
|
|
mov.l startcode, r0
|
|
|
|
jmp @r0
|
|
|
|
startcode: .long 0x00000008
|