This repository has been archived on 2025-12-14. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
github.ong19th.Citron/src/citra_qt/debugger/ramview.cpp
Mathieu Vaillancourt e5f09b8be6 UI/debugger changes
2014-04-18 18:34:23 -04:00

13 lines
No EOL
320 B
C++

#include "ramview.hxx"
#include "common/common.h"
#include "core/mem_map.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));
}