2015-01-04 17:36:57 +00:00
|
|
|
// Copyright 2014 Citra Emulator Project
|
|
|
|
// Licensed under GPLv2 or any later version
|
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
2016-12-11 11:53:18 +00:00
|
|
|
#pragma once
|
|
|
|
|
2014-04-01 02:26:50 +00:00
|
|
|
#include "qhexedit.h"
|
|
|
|
|
2016-09-18 00:38:01 +00:00
|
|
|
class GRamView : public QHexEdit {
|
2014-04-01 02:26:50 +00:00
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
2015-09-11 18:50:10 +00:00
|
|
|
GRamView(QWidget* parent = nullptr);
|
2014-04-01 02:26:50 +00:00
|
|
|
|
|
|
|
public slots:
|
|
|
|
void OnCPUStepped();
|
|
|
|
};
|