Files
banjo-kazooie/include/core1/ucode.h
T
mariob92 3e85dbf98a more work on: src/core1/code_8C50.c
- 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
2026-04-17 17:41:35 +02:00

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