more neo geo stuff

This commit is contained in:
tildearrow 2021-12-10 04:22:13 -05:00
parent 442180956c
commit e365aa4bdb
6 changed files with 179 additions and 27 deletions

View file

@ -82,6 +82,8 @@ class DivEngine {
size_t totalProcessed;
private: int* jediTable;
int dispatchCmd(DivCommand c);
void processRow(int i, bool afterDelay);
void nextOrder();
@ -139,6 +141,8 @@ class DivEngine {
audioEngine(DIV_AUDIO_SDL),
bbInLen(0),
temp{0,0},
prevSample{0,0} {}
prevSample{0,0},
totalProcessed(0),
jediTable(NULL) {}
};
#endif