mirror of
https://github.com/zeldaret/oot.git
synced 2025-07-18 22:04:54 +00:00
Finish matching ique-cn (#2451)
* git subrepo clone git@github.com:Thar0/com-plugin.git tools/com-plugin subrepo: subdir: "tools/com-plugin" merged: "e8543312d" upstream: origin: "git@github.com:Thar0/com-plugin.git" branch: "main" commit: "e8543312d" git-subrepo: version: "0.4.6" origin: "https://github.com/ingydotnet/git-subrepo" commit: "110b9eb" * ique-cn OK * Review suggestions * Most suggestions * git subrepo pull tools/com-plugin subrepo: subdir: "tools/com-plugin" merged: "81595ed1c" upstream: origin: "git@github.com:Thar0/com-plugin.git" branch: "main" commit: "81595ed1c" git-subrepo: version: "0.4.6" origin: "https://github.com/ingydotnet/git-subrepo" commit: "110b9eb" * Fix other versions
This commit is contained in:
parent
6c06168e72
commit
c028db03b4
51 changed files with 5756 additions and 52 deletions
|
@ -4,7 +4,9 @@ OSPifRam __osContPifRam;
|
|||
u8 __osContLastCmd;
|
||||
u8 __osMaxControllers; // always 4
|
||||
|
||||
#ifndef BBPLAYER
|
||||
OSTimer __osEepromTimer;
|
||||
#endif
|
||||
OSMesgQueue __osEepromTimerMsgQueue;
|
||||
OSMesg __osEepromTimerMsg;
|
||||
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
#include "global.h"
|
||||
|
||||
u32 __osPiAccessQueueEnabled = false;
|
||||
OSMesg piAccessBuf[1];
|
||||
static OSMesg piAccessBuf[1];
|
||||
OSMesgQueue __osPiAccessQueue;
|
||||
|
||||
void __osPiCreateAccessQueue(void) {
|
||||
|
|
|
@ -6,11 +6,10 @@ OSDevMgr __osPiDevMgr = { 0 };
|
|||
|
||||
OSPiHandle __Dom1SpeedParam;
|
||||
OSPiHandle __Dom2SpeedParam;
|
||||
OSThread piThread;
|
||||
STACK(piStackThread, 0x1000);
|
||||
OSMesgQueue piEventQueue;
|
||||
OSMesg piEventBuf[2];
|
||||
OSThread __osThreadSave;
|
||||
static OSThread piThread;
|
||||
static STACK(piThreadStack, 0x1000);
|
||||
static OSMesgQueue piEventQueue;
|
||||
static OSMesg piEventBuf[2];
|
||||
|
||||
OSPiHandle* __osPiTable = NULL;
|
||||
OSPiHandle* __osCurrentHandle[] = {
|
||||
|
@ -47,7 +46,7 @@ void osCreatePiManager(OSPri pri, OSMesgQueue* cmdQueue, OSMesg* cmdBuf, s32 cmd
|
|||
__osPiDevMgr.dma = __osPiRawStartDma;
|
||||
__osPiDevMgr.edma = __osEPiRawStartDma;
|
||||
|
||||
osCreateThread(&piThread, 0, __osDevMgrMain, (void*)&__osPiDevMgr, STACK_TOP(piStackThread), pri);
|
||||
osCreateThread(&piThread, 0, __osDevMgrMain, (void*)&__osPiDevMgr, STACK_TOP(piThreadStack), pri);
|
||||
osStartThread(&piThread);
|
||||
|
||||
__osRestoreInt(prevInt);
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
#include "global.h"
|
||||
|
||||
OSMesg siAccessBuf[1];
|
||||
static OSMesg siAccessBuf[1];
|
||||
OSMesgQueue __osSiAccessQueue;
|
||||
u32 __osSiAccessQueueEnabled = false;
|
||||
|
||||
|
|
|
@ -2,12 +2,12 @@
|
|||
#include "stack.h"
|
||||
#include "ultra64/internal.h"
|
||||
|
||||
OSThread viThread;
|
||||
STACK(viThreadStack, 0x1000);
|
||||
OSMesgQueue viEventQueue;
|
||||
OSMesg viEventBuf[5];
|
||||
OSIoMesg viRetraceMsg;
|
||||
OSIoMesg viCounterMsg;
|
||||
static OSThread viThread;
|
||||
static STACK(viThreadStack, 0x1000);
|
||||
static OSMesgQueue viEventQueue;
|
||||
static OSMesg viEventBuf[5];
|
||||
static OSIoMesg viRetraceMsg;
|
||||
static OSIoMesg viCounterMsg;
|
||||
OSDevMgr __osViDevMgr = { 0 };
|
||||
u32 __additional_scanline = 0;
|
||||
|
||||
|
|
3
src/libultra/os/kdebugserver.c
Normal file
3
src/libultra/os/kdebugserver.c
Normal file
|
@ -0,0 +1,3 @@
|
|||
#include "ultra64.h"
|
||||
|
||||
OSThread __osThreadSave;
|
Loading…
Add table
Add a link
Reference in a new issue