mirror of
https://github.com/Mr-Wiseguy/Zelda64Recomp.git
synced 2024-11-07 23:25:04 +01:00
39 lines
996 B
C++
39 lines
996 B
C++
|
#include "../portultra/multilibultra.hpp"
|
||
|
#include "recomp.h"
|
||
|
|
||
|
extern "C" void osViSetYScale_recomp(uint8_t* rdram, recomp_context * ctx) {
|
||
|
;
|
||
|
}
|
||
|
|
||
|
extern "C" void osViSetXScale_recomp(uint8_t* rdram, recomp_context * ctx) {
|
||
|
;
|
||
|
}
|
||
|
|
||
|
extern "C" void osCreateViManager_recomp(uint8_t* rdram, recomp_context* ctx) {
|
||
|
;
|
||
|
}
|
||
|
|
||
|
extern "C" void osViBlack_recomp(uint8_t* rdram, recomp_context* ctx) {
|
||
|
;
|
||
|
}
|
||
|
|
||
|
extern "C" void osViSetSpecialFeatures_recomp(uint8_t* rdram, recomp_context* ctx) {
|
||
|
;
|
||
|
}
|
||
|
|
||
|
extern "C" void osViGetCurrentFramebuffer_recomp(uint8_t* rdram, recomp_context* ctx) {
|
||
|
ctx->r2 = (gpr)(int32_t)osViGetCurrentFramebuffer();
|
||
|
}
|
||
|
|
||
|
extern "C" void osViGetNextFramebuffer_recomp(uint8_t* rdram, recomp_context* ctx) {
|
||
|
ctx->r2 = (gpr)(int32_t)osViGetNextFramebuffer();
|
||
|
}
|
||
|
|
||
|
extern "C" void osViSwapBuffer_recomp(uint8_t* rdram, recomp_context* ctx) {
|
||
|
osViSwapBuffer(rdram, (int32_t)ctx->r4);
|
||
|
}
|
||
|
|
||
|
extern "C" void osViSetMode_recomp(uint8_t* rdram, recomp_context* ctx) {
|
||
|
;
|
||
|
}
|