~ppsspp/ppsspp/ppsspp_1.3.0

« back to all changes in this revision

Viewing changes to Qt/Debugger/debugger_vfpu.h

  • Committer: Sérgio Benjamim
  • Date: 2017-01-02 00:12:05 UTC
  • Revision ID: sergio_br2@yahoo.com.br-20170102001205-cxbta9za203nmjwm
1.3.0 source (from ppsspp_1.3.0-r160.p5.l1762.a165.t83~56~ubuntu16.04.1.tar.xz).

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#ifndef DEBUGGER_VFPU_H
 
2
#define DEBUGGER_VFPU_H
 
3
 
 
4
#include "Core/Debugger/DebugInterface.h"
 
5
#include <QDialog>
 
6
 
 
7
class MainWindow;
 
8
namespace Ui {
 
9
class Debugger_VFPU;
 
10
}
 
11
 
 
12
class Debugger_VFPU : public QDialog
 
13
{
 
14
        Q_OBJECT
 
15
        
 
16
public:
 
17
        explicit Debugger_VFPU(DebugInterface *_cpu, MainWindow *mainWindow_, QWidget *parent = 0);
 
18
        ~Debugger_VFPU();
 
19
 
 
20
        void Update();
 
21
        void Goto(u32 addr);
 
22
private slots:
 
23
        void on_comboBox_currentIndexChanged(int index);
 
24
 
 
25
private:
 
26
        Ui::Debugger_VFPU *ui;
 
27
        DebugInterface* cpu;
 
28
        MainWindow* mainWindow;
 
29
};
 
30
 
 
31
#endif // DEBUGGER_VFPU_H