add some basic playback code!

here it begins
This commit is contained in:
tildearrow 2021-05-12 05:22:01 -05:00
parent 4a08adf224
commit a68f8d0dec
6 changed files with 103 additions and 9 deletions

View file

@ -22,6 +22,7 @@ class DivEngine {
bool playing;
bool speedAB;
int ticks, cycles, curRow, curOrder;
int changeOrd, changePos;
std::vector<DivChannelState> chan;
blip_buffer_t* bb[2];
@ -53,7 +54,9 @@ class DivEngine {
cycles(0),
curRow(-1),
curOrder(0),
changeOrd(-1),
changePos(0),
temp{0,0},
prevSample{0,0} {}
};
#endif
#endif