remove "done" folders, label "bs/droneenter, bs/dronelook, and bs/dronevanish files and functions"

This commit is contained in:
Banjo Kazooie
2023-01-21 20:13:03 -06:00
parent 0ecaa54b4a
commit c004632915
190 changed files with 645 additions and 644 deletions

11
src/core1/io/pirawread.c Normal file
View File

@@ -0,0 +1,11 @@
#include <ultra64.h>
#include "piint.h"
s32 osPiRawReadIo(u32 devAddr, u32 *data)
{
register u32 stat;
WAIT_ON_IOBUSY(stat);
*data = IO_READ((u32)osRomBase | devAddr);
return 0;
}