2015-01-04 12:36:57 -05:00
|
|
|
// Copyright 2014 Citra Emulator Project
|
|
|
|
// Licensed under GPLv2 or any later version
|
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
2015-01-03 18:51:14 -05:00
|
|
|
#include "ramview.h"
|
2014-03-31 22:26:50 -04:00
|
|
|
|
2015-05-06 03:06:12 -04:00
|
|
|
|
2014-03-31 22:26:50 -04:00
|
|
|
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));
|
2015-01-20 20:16:47 -05:00
|
|
|
}
|