progress definining core1 .data & .rodata sections

This commit is contained in:
Banjo Kazooie
2022-11-29 20:12:31 -06:00
parent 8badd5bb3e
commit 644ce813b0
45 changed files with 289 additions and 206 deletions

View File

@@ -5,8 +5,8 @@
#include "n_libaudio.h"
extern N_ALSynth *D_80276E80;
extern N_ALSynth *n_syn;
N_ALSynth *D_80276E80 = NULL;
N_ALSynth *n_syn = NULL;
void n_alInit(N_ALGlobals *g, ALSynConfig *config)
{

View File

@@ -8,7 +8,7 @@
* An index used to track the position in the outgoing payload
* it should write the next key to.
*/
extern s32 snsPayloadOutCurrPos;
s32 snsPayloadOutCurrPos = 0;
/*.bss*/
/**

View File

@@ -15,11 +15,19 @@ typedef struct {
void func_80250530(s32, u16 chan_mask, f32);
/* .data */
extern s32 D_80275C10;
extern s32 D_80275C14;
extern u8 D_80275C18;
extern u8 D_80275C1C;
extern Struct_Core1_CE60_0s D_80275C20[];
s32 D_80275C10 = -1;
s32 D_80275C14 = 0;
u8 D_80275C18 = 0;
u8 D_80275C1C = 0;
Struct_Core1_CE60_0s D_80275C20[] = {
{0xE890, 0xF9D4, 0xDCD8, 0x2328, 0xE7C8, 0xFB34},
{0xF95C, 0xFE73, 0xDCD8, 0x2328, 0xE69C, 0xF711},
{0xFA83, 0xFFAB, 0xDCD8, 0x2328, 0xE886, 0xEFFB},
{0xEA84, 0xF85B, 0xDCD8, 0x2328, 0xF830, 0xFD90},
{0xFEC0, 0x0140, 0x05DC, 0x0960, 0xE890, 0xFE7B},
{0xFD44, 0x05D8, 0xFD44, 0x06C2, 0xFC2E, 0x03D2},
{0xE890, 0xF9D4, 0xDCD8, 0x2328, 0xE7C8, 0xFB34}
};
/* .bss */
s32 D_802806F0;