aboutsummaryrefslogtreecommitdiff
path: root/libpsn00b/libc/_start.s
diff options
context:
space:
mode:
authorspicyjpeg <thatspicyjpeg@gmail.com>2022-10-19 14:15:28 +0200
committerspicyjpeg <thatspicyjpeg@gmail.com>2022-10-19 14:15:28 +0200
commit783014e53254fe17102a34c30120eeabf5227a47 (patch)
tree6c3e498295ddd293769b85e7b7cbecd80ce32be7 /libpsn00b/libc/_start.s
parente08a3d9366f8ca14a76b3dd569dac1fb9f569748 (diff)
downloadpsn00bsdk-783014e53254fe17102a34c30120eeabf5227a47.tar.gz
Clean up SDK debug logging, fix getTPage()
Diffstat (limited to 'libpsn00b/libc/_start.s')
-rw-r--r--libpsn00b/libc/_start.s18
1 files changed, 0 insertions, 18 deletions
diff --git a/libpsn00b/libc/_start.s b/libpsn00b/libc/_start.s
deleted file mode 100644
index 56075c8..0000000
--- a/libpsn00b/libc/_start.s
+++ /dev/null
@@ -1,18 +0,0 @@
-# PSn00bSDK _start() trampoline
-# (C) 2022 spicyjpeg - MPL licensed
-#
-# This file provides a weak function that can be easily overridden to e.g. set
-# $sp or perform additional initialization before the "real" _start()
-# (_start_inner()) is called.
-
-.set noreorder
-.section .text
-
-.global _start
-.type _start, @function
-.weak _start
-_start:
- la $gp, _gp
-
- j _start_inner
- nop