Add debug window for MDEC

This commit is contained in:
Connor McLaughlin
2019-10-12 22:47:00 +10:00
parent 0f68c8c5d3
commit 2d9d999713
4 changed files with 70 additions and 3 deletions

View File

@ -20,6 +20,7 @@ public:
T* GetFrontPointer() { return &m_ptr[m_head]; }
constexpr u32 GetCapacity() const { return CAPACITY; }
u32 GetSize() const { return m_size; }
u32 GetSpace() const { return CAPACITY - m_size; }
bool IsEmpty() const { return m_size == 0; }
bool IsFull() const { return m_size == CAPACITY; }