mirror of
https://github.com/project-slippi/Nintendont.git
synced 2025-10-06 00:22:40 +02:00
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
31 lines
456 B
ArmAsm
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
|