Add support for KernelPatchSyscall

This commit is contained in:
Maschell 2021-10-31 16:07:27 +01:00
parent 1a9d15226c
commit c530dcbc19
3 changed files with 5 additions and 2 deletions

View File

@ -11,7 +11,7 @@ TOPDIR ?= $(CURDIR)
include $(DEVKITPRO)/wut/share/wut_rules
export VER_MAJOR := 1
export VER_MINOR := 0
export VER_MINOR := 1
export VER_PATCH := 0
VERSION := $(VER_MAJOR).$(VER_MINOR).$(VER_PATCH)

View File

@ -19,6 +19,8 @@ void KernelWritePTE(uint32_t inputAddr, int32_t length);
void KernelNOPAtPhysicalAddress(uint32_t addr);
void KernelPatchSyscall(uint32_t index, uint32_t addr);
#ifdef __cplusplus
} // extern "C"
#endif

View File

@ -3,4 +3,5 @@
:TEXT
KernelCopyData
KernelWriteSRs
KernelReadSRs
KernelReadSRs
KernelPatchSyscall