2015-01-04 23:06:57 +05:30
|
|
|
// Copyright 2014 Citra Emulator Project
|
|
|
|
// Licensed under GPLv2 or any later version
|
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
2015-01-04 05:21:14 +05:30
|
|
|
#include "ramview.h"
|
2014-04-01 07:56:50 +05:30
|
|
|
|
2015-05-06 12:36:12 +05:30
|
|
|
|
2014-04-01 07:56:50 +05:30
|
|
|
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-21 06:46:47 +05:30
|
|
|
}
|