mirror of
https://github.com/coop-deluxe/sm64coopdx.git
synced 2025-10-30 08:01:01 +00:00
23 lines
461 B
C
23 lines
461 B
C
#include "sound_data.h"
|
|
#include "pc/rom_assets.h"
|
|
|
|
#define SAMPLES_SIZE 0x5b8200
|
|
#define SEQUENCES_SIZE 0x1ca00
|
|
|
|
unsigned char gSoundDataADSR[] = {
|
|
#include "sound/sound_data.ctl.inc.c"
|
|
};
|
|
|
|
unsigned char gSoundDataRaw[SAMPLES_SIZE] = {
|
|
#include "sound/sound_data.tbl.inc.c"
|
|
};
|
|
|
|
unsigned char gMusicData[SEQUENCES_SIZE] = {
|
|
#include "sound/sequences.bin.inc.c"
|
|
};
|
|
|
|
#ifndef VERSION_SH
|
|
unsigned char gBankSetsData[] = {
|
|
#include "sound/bank_sets.inc.c"
|
|
};
|
|
#endif
|