1
0
mirror of https://github.com/Lime3DS/Lime3DS.git synced 2025-03-23 22:18:42 +01:00

13 lines
307 B
C++
Raw Normal View History

2014-03-31 22:26:50 -04:00
#include "ramview.hxx"
#include "common.h"
#include "memory.h"
GRamView::GRamView(QWidget* parent) : QHexEdit(parent)
{
}
void GRamView::OnCPUStepped()
{
// TODO: QHexEdit doesn't show vertical scroll bars for > 10MB data streams...
//setData(QByteArray((const char*)Mem_RAM,sizeof(Mem_RAM)/8));
}