aboutsummaryrefslogtreecommitdiff
path: root/libpsn00b/libc/start.s
diff options
context:
space:
mode:
Diffstat (limited to 'libpsn00b/libc/start.s')
-rw-r--r--libpsn00b/libc/start.s39
1 files changed, 0 insertions, 39 deletions
diff --git a/libpsn00b/libc/start.s b/libpsn00b/libc/start.s
deleted file mode 100644
index 2cf6ed0..0000000
--- a/libpsn00b/libc/start.s
+++ /dev/null
@@ -1,39 +0,0 @@
-# Start function!
-# This is essentially the entry point of the PS-EXE
-
-.set noreorder
-
-.section .text
-
-.global _start
-.type _start, @function
-_start:
- addiu $sp, -4
- sw $ra, 0($sp)
-
- la $gp, _gp # Very important!
-
- la $a0, .bss # What are the CORRECT symbols for BSS start and end?
- la $a1, _end
-.Lclear_bss:
- sb $0 , 0($a0)
- blt $a0, $a1, .Lclear_bss
- addiu $a0, 1
-
- la $a0, _end+4 # Initialize heap for malloc (does not use BIOS maalloc)
- li $a1, 1572864
- jal InitHeap
- nop
-
- move $a0, $0 # No support for arguments for now
- move $a1, $0
-
- jal main
- addiu $sp, -8
- addiu $sp, 8
-
- lw $ra, 0($sp) # Return
- addiu $sp, 4
- jr $ra
- nop
- \ No newline at end of file