Added some of the MMU registers into the debugger Register window

This commit is contained in:
skidau
2014-10-12 20:03:29 +11:00
parent 18c81dbc33
commit 6d9990585c
2 changed files with 61 additions and 3 deletions

View File

@ -34,7 +34,7 @@ class CRegTable : public wxGridTableBase
{
enum
{
NUM_SPECIALS = 11,
NUM_SPECIALS = 14,
};
public:
@ -48,7 +48,7 @@ public:
memset(m_CachedFRegHasChanged, 0, sizeof(m_CachedFRegHasChanged));
}
int GetNumberCols() override { return 5; }
int GetNumberCols() override { return 9; }
int GetNumberRows() override { return 32 + NUM_SPECIALS; }
bool IsEmptyCell(int row, int col) override { return row > 31 && col > 2; }
wxString GetValue(int row, int col) override;