add more notes when working with new systems

This commit is contained in:
tildearrow 2022-03-06 22:36:32 -05:00
parent 9333b5bd51
commit 177c409e19
3 changed files with 10 additions and 0 deletions

View file

@ -29,6 +29,12 @@
#define addWrite(a,v) regWrites.push_back(DivRegWrite(a,v));
// HOW TO ADD A NEW COMMAND:
// add it to this enum. then see playback.cpp.
// there is a const char* cmdName[] array, which contains the command
// names as strings for the commands (and other debug stuff).
//
// if you miss it, the program will crash or misbehave at some point.
enum DivDispatchCmds {
DIV_CMD_NOTE_ON=0,
DIV_CMD_NOTE_OFF,