mirror of
https://github.com/libretro/Play-.git
synced 2024-12-12 11:05:36 +00:00
55 lines
1.4 KiB
C++
55 lines
1.4 KiB
C++
#include <stdio.h>
|
|
#include <string.h>
|
|
#include "RegViewGeneral.h"
|
|
|
|
CRegViewGeneral::CRegViewGeneral(HWND hParent, const RECT& rect, CVirtualMachine& virtualMachine, CMIPS* pC)
|
|
: CRegViewPage(hParent, rect)
|
|
, m_virtualMachine(virtualMachine)
|
|
, m_pCtx(pC)
|
|
{
|
|
m_virtualMachine.OnMachineStateChange.connect(boost::bind(&CRegViewGeneral::Update, this));
|
|
m_virtualMachine.OnRunningStateChange.connect(boost::bind(&CRegViewGeneral::Update, this));
|
|
}
|
|
|
|
CRegViewGeneral::~CRegViewGeneral()
|
|
{
|
|
|
|
}
|
|
|
|
void CRegViewGeneral::Update()
|
|
{
|
|
SetDisplayText(GetDisplayText().c_str());
|
|
CRegViewPage::Update();
|
|
}
|
|
|
|
std::string CRegViewGeneral::GetDisplayText()
|
|
{
|
|
char sTemp[256];
|
|
std::string displayText;
|
|
|
|
MIPSSTATE* s = &m_pCtx->m_State;
|
|
|
|
for(unsigned int i = 0; i < 32; i++)
|
|
{
|
|
sprintf(sTemp, "%s : 0x%0.8X%0.8X%0.8X%0.8X\r\n", CMIPS::m_sGPRName[i], s->nGPR[i].nV[3], s->nGPR[i].nV[2], s->nGPR[i].nV[1], s->nGPR[i].nV[0]);
|
|
displayText += sTemp;
|
|
}
|
|
|
|
sprintf(sTemp, "LO : 0x%0.8X%0.8X\r\n", s->nLO[1], s->nLO[0]);
|
|
displayText += sTemp;
|
|
|
|
sprintf(sTemp, "HI : 0x%0.8X%0.8X\r\n", s->nHI[1], s->nHI[0]);
|
|
displayText += sTemp;
|
|
|
|
sprintf(sTemp, "LO1: 0x%0.8X%0.8X\r\n", s->nLO1[1], s->nLO1[0]);
|
|
displayText += sTemp;
|
|
|
|
sprintf(sTemp, "HI1: 0x%0.8X%0.8X\r\n", s->nHI1[1], s->nHI1[0]);
|
|
displayText += sTemp;
|
|
|
|
sprintf(sTemp, "SA : 0x%0.8X\r\n", s->nSA);
|
|
displayText += sTemp;
|
|
|
|
return displayText;
|
|
}
|