Files
Nintendont/kernelboot/syscalls.s
FIX94 5a95477aac -reworked how nintendont gets booted, hopefully everything that worked still works
This massive change allows bootup inside a WiiU Wii VC title, so the WiiU Gamepad can be used as an input for player 1, details on that will be on gbatemp, besides that it should still work exactly as it did in the past on Wii/vWii
2017-09-16 01:17:23 +02:00

31 lines
456 B
ArmAsm

.section ".text"
.align 4
.arm
.global thread_create
.type thread_create STT_FUNC
thread_create:
.long 0xe6000010
bx lr
.global thread_continue
.type thread_continue STT_FUNC
thread_continue:
.long 0xe60000b0
bx lr
.global sync_before_read
.type sync_before_read STT_FUNC
sync_before_read:
.long 0xe60007f0
bx lr
.global sync_after_write
.type sync_after_write STT_FUNC
sync_after_write:
.long 0xe6000810
bx lr
.pool
.end