mirror of
https://github.com/N64Recomp/N64Recomp.git
synced 2025-12-21 07:22:36 +00:00
Add missing osSetTime and osSetCount functions to recompiler symbol lists
Some checks failed
validate / macos-13 (x64, Release) (push) Has been cancelled
validate / macos-14 (arm64, Debug) (push) Has been cancelled
validate / macos-14 (arm64, Release) (push) Has been cancelled
validate / ubuntu-latest (x64, Debug) (push) Has been cancelled
validate / ubuntu-latest (x64, Release) (push) Has been cancelled
validate / blaze/ubuntu-22.04 (arm64, Debug) (push) Has been cancelled
validate / blaze/ubuntu-22.04 (arm64, Release) (push) Has been cancelled
validate / macos-13 (x64, Debug) (push) Has been cancelled
validate / windows-latest (x64, Debug) (push) Has been cancelled
validate / windows-latest (x64, Release) (push) Has been cancelled
Some checks failed
validate / macos-13 (x64, Release) (push) Has been cancelled
validate / macos-14 (arm64, Debug) (push) Has been cancelled
validate / macos-14 (arm64, Release) (push) Has been cancelled
validate / ubuntu-latest (x64, Debug) (push) Has been cancelled
validate / ubuntu-latest (x64, Release) (push) Has been cancelled
validate / blaze/ubuntu-22.04 (arm64, Debug) (push) Has been cancelled
validate / blaze/ubuntu-22.04 (arm64, Release) (push) Has been cancelled
validate / macos-13 (x64, Debug) (push) Has been cancelled
validate / windows-latest (x64, Debug) (push) Has been cancelled
validate / windows-latest (x64, Release) (push) Has been cancelled
This commit is contained in:
parent
facc807049
commit
a13e5cff96
1 changed files with 4 additions and 0 deletions
|
|
@ -94,6 +94,7 @@ const std::unordered_set<std::string> N64Recomp::reimplemented_funcs {
|
||||||
"osSetEventMesg",
|
"osSetEventMesg",
|
||||||
// Timer functions
|
// Timer functions
|
||||||
"osGetTime",
|
"osGetTime",
|
||||||
|
"osSetTime",
|
||||||
"osSetTimer",
|
"osSetTimer",
|
||||||
"osStopTimer",
|
"osStopTimer",
|
||||||
// Voice functions
|
// Voice functions
|
||||||
|
|
@ -114,6 +115,7 @@ const std::unordered_set<std::string> N64Recomp::reimplemented_funcs {
|
||||||
"osVirtualToPhysical",
|
"osVirtualToPhysical",
|
||||||
// Coprocessor 0/1 functions
|
// Coprocessor 0/1 functions
|
||||||
"osGetCount",
|
"osGetCount",
|
||||||
|
"osSetCount",
|
||||||
"__osSetFpcCsr",
|
"__osSetFpcCsr",
|
||||||
// Cache funcs
|
// Cache funcs
|
||||||
"osInvalDCache",
|
"osInvalDCache",
|
||||||
|
|
@ -329,6 +331,7 @@ const std::unordered_set<std::string> N64Recomp::ignored_funcs {
|
||||||
"osSetTimer",
|
"osSetTimer",
|
||||||
"osStopTimer",
|
"osStopTimer",
|
||||||
"osGetTime",
|
"osGetTime",
|
||||||
|
"osSetTime",
|
||||||
"__osInsertTimer",
|
"__osInsertTimer",
|
||||||
"__osTimerInterrupt",
|
"__osTimerInterrupt",
|
||||||
"__osTimerServicesInit",
|
"__osTimerServicesInit",
|
||||||
|
|
@ -391,6 +394,7 @@ const std::unordered_set<std::string> N64Recomp::ignored_funcs {
|
||||||
// Coprocessor 0/1 functions
|
// Coprocessor 0/1 functions
|
||||||
"__osSetCount",
|
"__osSetCount",
|
||||||
"osGetCount",
|
"osGetCount",
|
||||||
|
"osSetCount",
|
||||||
"__osSetSR",
|
"__osSetSR",
|
||||||
"__osGetSR",
|
"__osGetSR",
|
||||||
"__osSetCause",
|
"__osSetCause",
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue