Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

audio_seqplayer.c cleanup #1274

Merged
merged 16 commits into from
Jun 21, 2022
Prev Previous commit
Next Next commit
Edit description
engineer124 committed Jun 12, 2022
commit 18c6057d9d0d72e4619b8e4707f70ad5297f17c1
7 changes: 3 additions & 4 deletions src/code/audio_seqplayer.c
Original file line number Diff line number Diff line change
@@ -1,18 +1,17 @@
/**
* @file audio_seqplayer.c
*
* Manages audio sequence players, interprets and executes the Music Macro Language for Sequences
* Manages audio sequence players, interprets and executes sequence instructions used to write .seq files
*
* Music Macro Lanuage (MML):
* Sequence Instructions:
* - A customized assembly language based on MIDI
* - All sequences are written in the MML
* - All sequences are written using these instructions
* - There are 3 different sets of instructions
* 1) Sequence Instructions
* 2) Channel Instructions
* 3) Layer Instruction
* - All three sets share a common pool of control flow instructions (>= 0xF2).
* Otherwise, each set of intructions have its own command interpreter
engineer124 marked this conversation as resolved.
Show resolved Hide resolved
*
*/
#include "ultra64.h"
#include "global.h"