2
1
Fork 0
mirror of https://github.com/yuzu-emu/yuzu.git synced 2024-07-04 23:31:19 +01:00
yuzu/src/citra_qt/debugger/registers.h

35 lines
648 B
C
Raw Normal View History

// Copyright 2014 Citra Emulator Project
// Licensed under GPLv2 or any later version
// Refer to the license.txt file included.
#include "ui_registers.h"
2014-04-01 03:26:50 +01:00
#include <QDockWidget>
#include <QTreeWidgetItem>
class QTreeWidget;
class EmuThread;
2014-04-01 03:26:50 +01:00
2014-04-18 23:30:53 +01:00
class RegistersWidget : public QDockWidget
2014-04-01 03:26:50 +01:00
{
Q_OBJECT
public:
2014-04-18 23:30:53 +01:00
RegistersWidget(QWidget* parent = NULL);
2014-04-01 03:26:50 +01:00
public slots:
void OnDebugModeEntered();
void OnDebugModeLeft();
2014-04-01 03:26:50 +01:00
void OnEmulationStarting(EmuThread* emu_thread);
void OnEmulationStopping();
2014-04-01 03:26:50 +01:00
private:
Ui::ARMRegisters cpu_regs_ui;
2014-04-01 03:26:50 +01:00
QTreeWidget* tree;
QTreeWidgetItem* registers;
QTreeWidgetItem* CSPR;
2014-04-01 03:26:50 +01:00
};