aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/citra_qt/debugger/ramview.h
blob: 18423036f02646c078ca7668b335536ea519c18d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// Copyright 2014 Citra Emulator Project
// Licensed under GPLv2 or any later version
// Refer to the license.txt file included.

#include "qhexedit.h"

class GRamView : public QHexEdit
{
    Q_OBJECT

public:
    GRamView(QWidget* parent = NULL);

public slots:
    void OnCPUStepped();
};