mirror of
https://github.com/RPCSX/rpcsx.git
synced 2025-12-06 07:12:14 +01:00
make precompiled header slimmer under Linux to increase CI and dev-machine build-times make sure unused modules don't compile add unused modules to the VS project to easier keep track of them
34 lines
658 B
C++
34 lines
658 B
C++
#pragma once
|
|
|
|
class PPCThread;
|
|
|
|
class DisAsmFrame : public wxFrame
|
|
{
|
|
static const uint LINES_OPCODES = 40;
|
|
u32 count;
|
|
|
|
wxListView* m_disasm_list;
|
|
PPCThread& CPU;
|
|
|
|
virtual void OnResize(wxSizeEvent& event);
|
|
|
|
virtual void Prev (wxCommandEvent& event);
|
|
virtual void Next (wxCommandEvent& event);
|
|
virtual void fPrev(wxCommandEvent& event);
|
|
virtual void fNext(wxCommandEvent& event);
|
|
virtual void SetPc(wxCommandEvent& event);
|
|
|
|
void Dump(wxCommandEvent& event);
|
|
void Resume();
|
|
void MouseWheel(wxMouseEvent& event);
|
|
|
|
public:
|
|
bool exit;
|
|
DisAsmFrame(PPCThread& cpu);
|
|
~DisAsmFrame()
|
|
{
|
|
exit = true;
|
|
}
|
|
|
|
virtual void AddLine(const wxString line);
|
|
}; |