Introduced the ability to parse audio tables from the ROM!

This commit is contained in:
MeltyPlayer
2022-10-24 02:05:59 -05:00
parent 37c8ce046c
commit 13fab60dd8
10 changed files with 551 additions and 15 deletions
+3 -1
View File
@@ -1,8 +1,10 @@
#pragma once
#include <stdint.h>
struct AudioBanks {
int numCtlEntries;
struct CtlEntry * ctlEntries;
};
extern struct AudioBanks load_audio_banks();
extern struct AudioBanks load_audio_banks( uint8_t *rom );