s32 svcSendSyncRequest(Handle session);
s32 svcGetProcessId(u32 *out, Handle handle);
s32 svcOutputDebugString(const char* str, int length);
+s32 svcSetThreadPriority(Handle thread, s32 prio);
#endif
str r1, [r3]
bx lr
+.global svcSetThreadPriority
+.type svcSetThreadPriority, %function
+svcSetThreadPriority:
+ svc 0x0C
+ bx lr
+
.global svcOutputDebugString
.type svcOutputDebugString, %function
svcOutputDebugString:
- str r0, [sp,#-0x4]!
- svc 0x3D
- ldr r2, [sp], #4
- str r1, [r2]
- bx lr
-
+ str r0, [sp,#-0x4]!
+ svc 0x3D
+ ldr r2, [sp], #4
+ str r1, [r2]
+ bx lr