2012-11-01 16:19:01 +01:00
|
|
|
#pragma once
|
2017-03-02 12:29:03 +01:00
|
|
|
|
2013-12-29 15:55:09 -08:00
|
|
|
#include "Windows/W32Util/DialogManager.h"
|
|
|
|
|
#include "Core/MemMap.h"
|
|
|
|
|
#include "Core/Debugger/DebugInterface.h"
|
2012-11-01 16:19:01 +01:00
|
|
|
|
2017-03-02 12:29:03 +01:00
|
|
|
class CVFPUDlg : public Dialog {
|
|
|
|
|
public:
|
|
|
|
|
CVFPUDlg(HINSTANCE _hInstance, HWND _hParent, DebugInterface *cpu_);
|
|
|
|
|
~CVFPUDlg();
|
|
|
|
|
|
|
|
|
|
void Goto(u32 addr);
|
2022-12-10 20:32:12 -08:00
|
|
|
void Update() override;
|
2017-03-02 12:29:03 +01:00
|
|
|
void Size();
|
|
|
|
|
|
2012-11-01 16:19:01 +01:00
|
|
|
private:
|
2017-03-02 12:29:03 +01:00
|
|
|
int index;
|
2012-11-01 16:19:01 +01:00
|
|
|
DebugInterface *cpu;
|
|
|
|
|
HFONT font;
|
|
|
|
|
int mode;
|
2022-12-10 20:32:12 -08:00
|
|
|
BOOL DlgProc(UINT message, WPARAM wParam, LPARAM lParam) override;
|
2012-11-01 16:19:01 +01:00
|
|
|
};
|