1
0
Fork 0
mirror of https://github.com/zeldaret/oot.git synced 2025-08-13 02:10:57 +00:00

Remove functions.h (#2501)

* split most of functions.h

* osdriverominit

* forgot include

* fix

* remove functions.h

* temporary fix for fix_bss

* fix bss

* revert fix_bss.py change
This commit is contained in:
fig02 2025-04-05 19:16:52 -04:00 committed by GitHub
parent 1beeff9658
commit 5133db15a3
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
50 changed files with 326 additions and 194 deletions

View file

@ -1,4 +1,6 @@
#include "boot.h"
#include "idle.h"
#include "is_debug.h"
#include "stack.h"
#include "stackcheck.h"
#if PLATFORM_N64

View file

@ -1,4 +1,5 @@
#include "buffers.h"
#include "idle.h"
#include "main.h"
#include "segment_symbols.h"
#include "stack.h"

View file

@ -95,6 +95,8 @@
the two sets of lengths.
*/
#include "inflate.h"
#include "ultra64/ultratypes.h"
#include "libc/stddef.h"
#include "libc/stdint.h"

View file

@ -1,5 +1,6 @@
#include "is_debug.h"
#include "global.h"
#include "attributes.h"
typedef struct ISVDbg {
/* 0x00 */ u32 magic; // "IS64"

View file

@ -23,6 +23,9 @@
#include "libu64/debug.h"
#include "attributes.h"
#include "fault.h"
#if PLATFORM_IQUE
#include "inflate.h"
#endif
#include "line_numbers.h"
#if PLATFORM_N64
#include "n64dd.h"
@ -31,12 +34,15 @@
#include "stack.h"
#include "stackcheck.h"
#include "terminal.h"
#if !PLATFORM_IQUE
#include "yaz0.h"
#endif
#include "z64thread.h"
#include "global.h"
#pragma increment_block_number "gc-eu:0 gc-eu-mq:0 gc-jp:0 gc-jp-ce:0 gc-jp-mq:0 gc-us:0 gc-us-mq:0 ntsc-1.2:20" \
"pal-1.0:18 pal-1.1:18"
#pragma increment_block_number "gc-eu:0 gc-eu-mq:0 gc-jp:0 gc-jp-ce:0 gc-jp-mq:0 gc-us:0 gc-us-mq:0 ntsc-1.2:14" \
"pal-1.0:12 pal-1.1:12"
StackEntry sDmaMgrStackInfo;
OSMesgQueue sDmaMgrMsgQueue;