mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-16 11:48:36 +12:00
This commit is contained in:
parent
de070bf485
commit
a90b5cf37a
1998 changed files with 1034301 additions and 0 deletions
32
rpcs3/Gui/DisAsmFrame.h
Normal file
32
rpcs3/Gui/DisAsmFrame.h
Normal file
|
@ -0,0 +1,32 @@
|
|||
#pragma once
|
||||
|
||||
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);
|
||||
};
|
Loading…
Add table
Add a link
Reference in a new issue