Committed on the Free edition of March Hare Software CVSNT Server. Upgrade to CVS Suite for more features and support: http://march-hare.com/cvsnt/ git-svn-id: http://moon:8086/svn/vhdl/trunk@272 cc03376c-175c-47c8-b038-4cd826a8556b
16 lines
175 B
ArmAsm
16 lines
175 B
ArmAsm
.file "startup.S"
|
|
|
|
.section .etext,"ax"
|
|
.extern _init
|
|
.align 2
|
|
.globl _start
|
|
_start:
|
|
.set noreorder
|
|
|
|
# jump init
|
|
la $8, _init
|
|
jr $8
|
|
nop
|
|
|
|
.set reorder
|