mirror of
https://github.com/joel16/VitaShell.git
synced 2024-12-12 13:55:34 +00:00
33 lines
621 B
ArmAsm
33 lines
621 B
ArmAsm
.arch armv7a
|
|
|
|
.macro STUB name
|
|
.global \name
|
|
.type \name, %function
|
|
\name:
|
|
mvn r0, #0xFFFFFFFF
|
|
bx lr
|
|
nop
|
|
.endm
|
|
|
|
.section .text
|
|
.arm
|
|
|
|
STUB sceGenSyscall
|
|
|
|
STUB sceAppMgrLaunchAppByUri
|
|
STUB sceAppMgrAppParamGetString
|
|
STUB sceAppMgrGetDevInfo
|
|
STUB sceAppMgrConvertVs0UserDrivePath
|
|
STUB sceAppMgrPspSaveDataRootMount
|
|
STUB sceAppMgrMmsMount
|
|
|
|
STUB _sceSysmoduleUnloadModuleInternalWithArg
|
|
STUB _sceSysmoduleLoadModuleInternalWithArg
|
|
STUB sceKernelGetMemBlockInfoByRange
|
|
|
|
STUB sceKernelGetMemBlockInfoByAddr
|
|
STUB sceKernelOpenMemBlock
|
|
STUB sceKernelCloseMemBlock
|
|
|
|
STUB sceKernelGetSystemSwVersion
|
|
STUB sceKernelGetModelForCDialog |