1
0
Fork 0
mirror of https://github.com/zeldaret/oot.git synced 2025-08-11 09:20:17 +00:00

add array_count.h (#2514)

This commit is contained in:
fig02 2025-04-26 18:17:02 -04:00 committed by GitHub
parent 25b2fa4bca
commit bed76a3bf3
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
154 changed files with 200 additions and 28 deletions

View file

@ -1,5 +1,8 @@
// Does some command processing
#include "n64dd.h"
#include "array_count.h"
#include "versions.h"
#include "z_locale.h"

View file

@ -1,6 +1,8 @@
#include "n64dd.h"
#include "libc64/aprintf.h"
#include "attributes.h"
#include "array_count.h"
#include "global.h"

View file

@ -1,11 +1,14 @@
// Main interface for the 64DD from the rest of the game. Starts background
// threads and provides functions to submit commands to them.
#include "n64dd.h"
#include "libc64/sleep.h"
#include "array_count.h"
#include "fault.h"
#include "gfx.h"
#include "irqmgr.h"
#include "line_numbers.h"
#include "n64dd.h"
#include "stack.h"
#include "stackcheck.h"
#include "sys_freeze.h"