FixedQueue, part 1

This commit is contained in:
tildearrow 2023-07-12 19:54:37 -05:00
parent dbd200c279
commit 99be9cb337
1 changed files with 1 additions and 0 deletions

View File

@ -79,6 +79,7 @@ class DivPlatformFMBase: public DivDispatch {
unsigned short addr;
unsigned char val;
bool addrOrVal;
QueuedWrite(): addr(0), val(0), addrOrVal(false) {}
QueuedWrite(unsigned short a, unsigned char v): addr(a), val(v), addrOrVal(false) {}
};
std::deque<QueuedWrite> writes;