mirror of
https://gitlab.com/banjo.decomp/banjo-kazooie
synced 2026-08-12 03:37:51 -04:00
3e85dbf98a
- created header file (threads.h) - renamed resetThread to thread5 (based on OSId in osCreateThread), because it's not really reset handling - renamed functions to match style guide - further documentations
13 lines
311 B
C
13 lines
311 B
C
#ifndef BANJO_KAZOOIE_CORE1_UCODE_H
|
|
#define BANJO_KAZOOIE_CORE1_UCODE_H
|
|
|
|
#include <ultra64.h>
|
|
|
|
void ucode_load(void);
|
|
void ucode_stub1(void); // does nothing
|
|
void ucode_stub2(void); // performs dummy read on PI
|
|
s32 ucode_stub3(void); // returns always 0
|
|
void ucode_getPtrAndSize(void **ptr, u32 *size);
|
|
|
|
#endif
|