core1/code_5650.c progress

This commit is contained in:
Banjo Kazooie
2022-10-15 18:21:44 -05:00
parent 9602ab137d
commit 17c30f90ab
5 changed files with 26 additions and 22 deletions

View File

@@ -140,9 +140,15 @@ typedef struct {
u8 chan;
} N_ALOscEvent;
typedef struct {
union {
s32 i;
f32 f;
}data[2];
} N_ALGenericEvent;
typedef struct {
s16 type;
u16 type;
union {
ALMIDIEvent midi;
ALTempoEvent tempo;
@@ -155,6 +161,7 @@ typedef struct {
ALSeqpSeqEvent spseq;
ALSeqpBankEvent spbank;
N_ALOscEvent osc;
N_ALGenericEvent generic;
} msg;
} N_ALEvent;