- deleted

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@382 cc03376c-175c-47c8-b038-4cd826a8556b
This commit is contained in:
2009-03-14 17:19:59 +00:00
parent 58f704112c
commit ac89acfbeb
-47
View File
@@ -1,47 +0,0 @@
.file "init.S"
.text
.align 2
.globl _init
.extern end
_init:
.set noreorder
# set uart
# la $8, sys_uart_baud
# addiu $9, $0, baudrate
# sb $9, 0($8)
# set stack pointer
la $sp, stack_ptr
la $gp, _gp
# zero bss
la $8, __bss_start
la $9, end
$zeroise:
sw $0, 0($8)
bne $8, $9, $zeroise
addiu $8, 4
# zero sbss
# la $8, __sbss_start
# la $9, __sbss_end
#$szeroise:
# sw $0, 0($8)
# bne $8, $9, $szeroise
# addiu $8, 4
# jump main
la $t0, main
jalr $t0
nop
_terminate:
nop
la $t0, exit
jalr $t0
move $a0, $v0
.set reorder