mirror of
https://github.com/yuzu-mirror/yuzu.git
synced 2024-11-13 00:09:59 +00:00
35 lines
648 B
C++
35 lines
648 B
C++
// Copyright 2014 Citra Emulator Project
|
|
// Licensed under GPLv2 or any later version
|
|
// Refer to the license.txt file included.
|
|
|
|
#include "ui_registers.h"
|
|
|
|
#include <QDockWidget>
|
|
#include <QTreeWidgetItem>
|
|
|
|
class QTreeWidget;
|
|
class EmuThread;
|
|
|
|
class RegistersWidget : public QDockWidget
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
RegistersWidget(QWidget* parent = NULL);
|
|
|
|
public slots:
|
|
void OnDebugModeEntered();
|
|
void OnDebugModeLeft();
|
|
|
|
void OnEmulationStarting(EmuThread* emu_thread);
|
|
void OnEmulationStopping();
|
|
|
|
private:
|
|
Ui::ARMRegisters cpu_regs_ui;
|
|
|
|
QTreeWidget* tree;
|
|
|
|
QTreeWidgetItem* registers;
|
|
QTreeWidgetItem* CSPR;
|
|
};
|