├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── forms ├── AboutUI.cxx ├── AboutUI.fl ├── AboutUI.h ├── BookmarksUI.cxx ├── BookmarksUI.fl ├── BookmarksUI.h ├── MainUI.cxx ├── MainUI.fl ├── MainUI.h ├── MemDumpUI.cxx ├── MemDumpUI.fl ├── MemDumpUI.h ├── MemoryUI.cxx ├── MemoryUI.fl ├── MemoryUI.h ├── MessageUI.cxx ├── MessageUI.fl ├── MessageUI.h ├── SettingsUI.cxx ├── SettingsUI.fl ├── SettingsUI.h ├── SourceUI.cxx ├── SourceUI.fl ├── SourceUI.h ├── SymbolsUI.cxx ├── SymbolsUI.fl ├── SymbolsUI.h ├── WatchesUI.cxx ├── WatchesUI.fl └── WatchesUI.h ├── icons ├── bookmark_icon.png ├── connect.png ├── connect_inactive.png ├── disconnec_inactive.png ├── disconnect.png ├── memory.png ├── mwin_icon.png ├── psdebug-banner.png ├── psdebug.ico ├── psdebug.png ├── psdebug_icon.png ├── reboot.png ├── reboot_inactive.png ├── run.png ├── run_inactive.png ├── source_icon.png ├── step.png ├── step_inactive.png ├── stepout.png ├── stepout_inactive.png ├── stepover.png ├── stepover_inactive.png ├── stop.png ├── stop_inactive.png ├── symbols_icon.png ├── upload.png ├── upload_inactive.png └── watch.png ├── monitor ├── assemble.bat ├── cop0regs.inc ├── monitor.asm ├── monitor.inc ├── patch.asm ├── protocol.txt ├── psyq-obj │ ├── assemble.bat │ └── psdb_install.asm ├── serial.inc └── serialregs.inc ├── psdebug.rc ├── src ├── CommsClass.cpp ├── CommsClass.h ├── ConfigClass.cpp ├── ConfigClass.h ├── ProgramClass.cpp ├── ProgramClass.h ├── ProjectClass.cpp ├── ProjectClass.h ├── RemoteMemClass.cpp ├── RemoteMemClass.h ├── SerialClass.cpp ├── SerialClass.h ├── SymbolsClass.cpp ├── SymbolsClass.h ├── about.cpp ├── addressinput.cpp ├── bmark_icon.h ├── bookmarks.cpp ├── debugger.cpp ├── debugger.h ├── defaults.h ├── disassembler.cpp ├── main.cpp ├── mem_icon.h ├── memory.cpp ├── memorydump.cpp ├── message.cpp ├── monitor_defs.h ├── mwin_icon.h ├── psdebug_icon.h ├── pstypes.h ├── settings.cpp ├── source.cpp ├── source.h ├── source_icon.h ├── symbols_icon.h ├── watch_icon.h └── watches.cpp └── widgets ├── Fl_Bookmark_Table.cpp ├── Fl_Bookmark_Table.h ├── Fl_Disassembler.cpp ├── Fl_Disassembler.h ├── Fl_MemoryView.cpp ├── Fl_MemoryView.h ├── Fl_RegView.cpp ├── Fl_RegView.h ├── Fl_Source_Browser.cpp ├── Fl_Source_Browser.h ├── Fl_Status_Bar.cpp ├── Fl_Status_Bar.h ├── Fl_Symbol_Table.cpp ├── Fl_Symbol_Table.h ├── Fl_WatchTable.cpp ├── Fl_WatchTable.h ├── Main_Window.cpp ├── Main_Window.h ├── mips_disassembler.cpp └── mips_disassembler.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lameguy64/PSn00b-Debugger/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lameguy64/PSn00b-Debugger/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lameguy64/PSn00b-Debugger/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lameguy64/PSn00b-Debugger/HEAD/README.md -------------------------------------------------------------------------------- /forms/AboutUI.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lameguy64/PSn00b-Debugger/HEAD/forms/AboutUI.cxx -------------------------------------------------------------------------------- /forms/AboutUI.fl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lameguy64/PSn00b-Debugger/HEAD/forms/AboutUI.fl -------------------------------------------------------------------------------- /forms/AboutUI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lameguy64/PSn00b-Debugger/HEAD/forms/AboutUI.h -------------------------------------------------------------------------------- /forms/BookmarksUI.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lameguy64/PSn00b-Debugger/HEAD/forms/BookmarksUI.cxx -------------------------------------------------------------------------------- /forms/BookmarksUI.fl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lameguy64/PSn00b-Debugger/HEAD/forms/BookmarksUI.fl -------------------------------------------------------------------------------- /forms/BookmarksUI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lameguy64/PSn00b-Debugger/HEAD/forms/BookmarksUI.h -------------------------------------------------------------------------------- /forms/MainUI.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lameguy64/PSn00b-Debugger/HEAD/forms/MainUI.cxx -------------------------------------------------------------------------------- /forms/MainUI.fl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lameguy64/PSn00b-Debugger/HEAD/forms/MainUI.fl -------------------------------------------------------------------------------- /forms/MainUI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lameguy64/PSn00b-Debugger/HEAD/forms/MainUI.h -------------------------------------------------------------------------------- /forms/MemDumpUI.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lameguy64/PSn00b-Debugger/HEAD/forms/MemDumpUI.cxx -------------------------------------------------------------------------------- /forms/MemDumpUI.fl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lameguy64/PSn00b-Debugger/HEAD/forms/MemDumpUI.fl -------------------------------------------------------------------------------- /forms/MemDumpUI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lameguy64/PSn00b-Debugger/HEAD/forms/MemDumpUI.h -------------------------------------------------------------------------------- /forms/MemoryUI.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lameguy64/PSn00b-Debugger/HEAD/forms/MemoryUI.cxx -------------------------------------------------------------------------------- /forms/MemoryUI.fl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lameguy64/PSn00b-Debugger/HEAD/forms/MemoryUI.fl -------------------------------------------------------------------------------- /forms/MemoryUI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lameguy64/PSn00b-Debugger/HEAD/forms/MemoryUI.h -------------------------------------------------------------------------------- /forms/MessageUI.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lameguy64/PSn00b-Debugger/HEAD/forms/MessageUI.cxx -------------------------------------------------------------------------------- /forms/MessageUI.fl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lameguy64/PSn00b-Debugger/HEAD/forms/MessageUI.fl -------------------------------------------------------------------------------- /forms/MessageUI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lameguy64/PSn00b-Debugger/HEAD/forms/MessageUI.h -------------------------------------------------------------------------------- /forms/SettingsUI.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lameguy64/PSn00b-Debugger/HEAD/forms/SettingsUI.cxx -------------------------------------------------------------------------------- /forms/SettingsUI.fl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lameguy64/PSn00b-Debugger/HEAD/forms/SettingsUI.fl -------------------------------------------------------------------------------- /forms/SettingsUI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lameguy64/PSn00b-Debugger/HEAD/forms/SettingsUI.h -------------------------------------------------------------------------------- /forms/SourceUI.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lameguy64/PSn00b-Debugger/HEAD/forms/SourceUI.cxx -------------------------------------------------------------------------------- /forms/SourceUI.fl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lameguy64/PSn00b-Debugger/HEAD/forms/SourceUI.fl -------------------------------------------------------------------------------- /forms/SourceUI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lameguy64/PSn00b-Debugger/HEAD/forms/SourceUI.h -------------------------------------------------------------------------------- /forms/SymbolsUI.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lameguy64/PSn00b-Debugger/HEAD/forms/SymbolsUI.cxx -------------------------------------------------------------------------------- /forms/SymbolsUI.fl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lameguy64/PSn00b-Debugger/HEAD/forms/SymbolsUI.fl -------------------------------------------------------------------------------- /forms/SymbolsUI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lameguy64/PSn00b-Debugger/HEAD/forms/SymbolsUI.h -------------------------------------------------------------------------------- /forms/WatchesUI.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lameguy64/PSn00b-Debugger/HEAD/forms/WatchesUI.cxx -------------------------------------------------------------------------------- /forms/WatchesUI.fl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lameguy64/PSn00b-Debugger/HEAD/forms/WatchesUI.fl -------------------------------------------------------------------------------- /forms/WatchesUI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lameguy64/PSn00b-Debugger/HEAD/forms/WatchesUI.h -------------------------------------------------------------------------------- /icons/bookmark_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lameguy64/PSn00b-Debugger/HEAD/icons/bookmark_icon.png -------------------------------------------------------------------------------- /icons/connect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lameguy64/PSn00b-Debugger/HEAD/icons/connect.png -------------------------------------------------------------------------------- /icons/connect_inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lameguy64/PSn00b-Debugger/HEAD/icons/connect_inactive.png -------------------------------------------------------------------------------- /icons/disconnec_inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lameguy64/PSn00b-Debugger/HEAD/icons/disconnec_inactive.png -------------------------------------------------------------------------------- /icons/disconnect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lameguy64/PSn00b-Debugger/HEAD/icons/disconnect.png -------------------------------------------------------------------------------- /icons/memory.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lameguy64/PSn00b-Debugger/HEAD/icons/memory.png -------------------------------------------------------------------------------- /icons/mwin_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lameguy64/PSn00b-Debugger/HEAD/icons/mwin_icon.png -------------------------------------------------------------------------------- /icons/psdebug-banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lameguy64/PSn00b-Debugger/HEAD/icons/psdebug-banner.png -------------------------------------------------------------------------------- /icons/psdebug.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lameguy64/PSn00b-Debugger/HEAD/icons/psdebug.ico -------------------------------------------------------------------------------- /icons/psdebug.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lameguy64/PSn00b-Debugger/HEAD/icons/psdebug.png -------------------------------------------------------------------------------- /icons/psdebug_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lameguy64/PSn00b-Debugger/HEAD/icons/psdebug_icon.png -------------------------------------------------------------------------------- /icons/reboot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lameguy64/PSn00b-Debugger/HEAD/icons/reboot.png -------------------------------------------------------------------------------- /icons/reboot_inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lameguy64/PSn00b-Debugger/HEAD/icons/reboot_inactive.png -------------------------------------------------------------------------------- /icons/run.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lameguy64/PSn00b-Debugger/HEAD/icons/run.png -------------------------------------------------------------------------------- /icons/run_inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lameguy64/PSn00b-Debugger/HEAD/icons/run_inactive.png -------------------------------------------------------------------------------- /icons/source_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lameguy64/PSn00b-Debugger/HEAD/icons/source_icon.png -------------------------------------------------------------------------------- /icons/step.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lameguy64/PSn00b-Debugger/HEAD/icons/step.png -------------------------------------------------------------------------------- /icons/step_inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lameguy64/PSn00b-Debugger/HEAD/icons/step_inactive.png -------------------------------------------------------------------------------- /icons/stepout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lameguy64/PSn00b-Debugger/HEAD/icons/stepout.png -------------------------------------------------------------------------------- /icons/stepout_inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lameguy64/PSn00b-Debugger/HEAD/icons/stepout_inactive.png -------------------------------------------------------------------------------- /icons/stepover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lameguy64/PSn00b-Debugger/HEAD/icons/stepover.png -------------------------------------------------------------------------------- /icons/stepover_inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lameguy64/PSn00b-Debugger/HEAD/icons/stepover_inactive.png -------------------------------------------------------------------------------- /icons/stop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lameguy64/PSn00b-Debugger/HEAD/icons/stop.png -------------------------------------------------------------------------------- /icons/stop_inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lameguy64/PSn00b-Debugger/HEAD/icons/stop_inactive.png -------------------------------------------------------------------------------- /icons/symbols_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lameguy64/PSn00b-Debugger/HEAD/icons/symbols_icon.png -------------------------------------------------------------------------------- /icons/upload.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lameguy64/PSn00b-Debugger/HEAD/icons/upload.png -------------------------------------------------------------------------------- /icons/upload_inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lameguy64/PSn00b-Debugger/HEAD/icons/upload_inactive.png -------------------------------------------------------------------------------- /icons/watch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lameguy64/PSn00b-Debugger/HEAD/icons/watch.png -------------------------------------------------------------------------------- /monitor/assemble.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lameguy64/PSn00b-Debugger/HEAD/monitor/assemble.bat -------------------------------------------------------------------------------- /monitor/cop0regs.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lameguy64/PSn00b-Debugger/HEAD/monitor/cop0regs.inc -------------------------------------------------------------------------------- /monitor/monitor.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lameguy64/PSn00b-Debugger/HEAD/monitor/monitor.asm -------------------------------------------------------------------------------- /monitor/monitor.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lameguy64/PSn00b-Debugger/HEAD/monitor/monitor.inc -------------------------------------------------------------------------------- /monitor/patch.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lameguy64/PSn00b-Debugger/HEAD/monitor/patch.asm -------------------------------------------------------------------------------- /monitor/protocol.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lameguy64/PSn00b-Debugger/HEAD/monitor/protocol.txt -------------------------------------------------------------------------------- /monitor/psyq-obj/assemble.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lameguy64/PSn00b-Debugger/HEAD/monitor/psyq-obj/assemble.bat -------------------------------------------------------------------------------- /monitor/psyq-obj/psdb_install.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lameguy64/PSn00b-Debugger/HEAD/monitor/psyq-obj/psdb_install.asm -------------------------------------------------------------------------------- /monitor/serial.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lameguy64/PSn00b-Debugger/HEAD/monitor/serial.inc -------------------------------------------------------------------------------- /monitor/serialregs.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lameguy64/PSn00b-Debugger/HEAD/monitor/serialregs.inc -------------------------------------------------------------------------------- /psdebug.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lameguy64/PSn00b-Debugger/HEAD/psdebug.rc -------------------------------------------------------------------------------- /src/CommsClass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lameguy64/PSn00b-Debugger/HEAD/src/CommsClass.cpp -------------------------------------------------------------------------------- /src/CommsClass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lameguy64/PSn00b-Debugger/HEAD/src/CommsClass.h -------------------------------------------------------------------------------- /src/ConfigClass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lameguy64/PSn00b-Debugger/HEAD/src/ConfigClass.cpp -------------------------------------------------------------------------------- /src/ConfigClass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lameguy64/PSn00b-Debugger/HEAD/src/ConfigClass.h -------------------------------------------------------------------------------- /src/ProgramClass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lameguy64/PSn00b-Debugger/HEAD/src/ProgramClass.cpp -------------------------------------------------------------------------------- /src/ProgramClass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lameguy64/PSn00b-Debugger/HEAD/src/ProgramClass.h -------------------------------------------------------------------------------- /src/ProjectClass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lameguy64/PSn00b-Debugger/HEAD/src/ProjectClass.cpp -------------------------------------------------------------------------------- /src/ProjectClass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lameguy64/PSn00b-Debugger/HEAD/src/ProjectClass.h -------------------------------------------------------------------------------- /src/RemoteMemClass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lameguy64/PSn00b-Debugger/HEAD/src/RemoteMemClass.cpp -------------------------------------------------------------------------------- /src/RemoteMemClass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lameguy64/PSn00b-Debugger/HEAD/src/RemoteMemClass.h -------------------------------------------------------------------------------- /src/SerialClass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lameguy64/PSn00b-Debugger/HEAD/src/SerialClass.cpp -------------------------------------------------------------------------------- /src/SerialClass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lameguy64/PSn00b-Debugger/HEAD/src/SerialClass.h -------------------------------------------------------------------------------- /src/SymbolsClass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lameguy64/PSn00b-Debugger/HEAD/src/SymbolsClass.cpp -------------------------------------------------------------------------------- /src/SymbolsClass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lameguy64/PSn00b-Debugger/HEAD/src/SymbolsClass.h -------------------------------------------------------------------------------- /src/about.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lameguy64/PSn00b-Debugger/HEAD/src/about.cpp -------------------------------------------------------------------------------- /src/addressinput.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lameguy64/PSn00b-Debugger/HEAD/src/addressinput.cpp -------------------------------------------------------------------------------- /src/bmark_icon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lameguy64/PSn00b-Debugger/HEAD/src/bmark_icon.h -------------------------------------------------------------------------------- /src/bookmarks.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lameguy64/PSn00b-Debugger/HEAD/src/bookmarks.cpp -------------------------------------------------------------------------------- /src/debugger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lameguy64/PSn00b-Debugger/HEAD/src/debugger.cpp -------------------------------------------------------------------------------- /src/debugger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lameguy64/PSn00b-Debugger/HEAD/src/debugger.h -------------------------------------------------------------------------------- /src/defaults.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lameguy64/PSn00b-Debugger/HEAD/src/defaults.h -------------------------------------------------------------------------------- /src/disassembler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lameguy64/PSn00b-Debugger/HEAD/src/disassembler.cpp -------------------------------------------------------------------------------- /src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lameguy64/PSn00b-Debugger/HEAD/src/main.cpp -------------------------------------------------------------------------------- /src/mem_icon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lameguy64/PSn00b-Debugger/HEAD/src/mem_icon.h -------------------------------------------------------------------------------- /src/memory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lameguy64/PSn00b-Debugger/HEAD/src/memory.cpp -------------------------------------------------------------------------------- /src/memorydump.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lameguy64/PSn00b-Debugger/HEAD/src/memorydump.cpp -------------------------------------------------------------------------------- /src/message.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lameguy64/PSn00b-Debugger/HEAD/src/message.cpp -------------------------------------------------------------------------------- /src/monitor_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lameguy64/PSn00b-Debugger/HEAD/src/monitor_defs.h -------------------------------------------------------------------------------- /src/mwin_icon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lameguy64/PSn00b-Debugger/HEAD/src/mwin_icon.h -------------------------------------------------------------------------------- /src/psdebug_icon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lameguy64/PSn00b-Debugger/HEAD/src/psdebug_icon.h -------------------------------------------------------------------------------- /src/pstypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lameguy64/PSn00b-Debugger/HEAD/src/pstypes.h -------------------------------------------------------------------------------- /src/settings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lameguy64/PSn00b-Debugger/HEAD/src/settings.cpp -------------------------------------------------------------------------------- /src/source.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lameguy64/PSn00b-Debugger/HEAD/src/source.cpp -------------------------------------------------------------------------------- /src/source.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lameguy64/PSn00b-Debugger/HEAD/src/source.h -------------------------------------------------------------------------------- /src/source_icon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lameguy64/PSn00b-Debugger/HEAD/src/source_icon.h -------------------------------------------------------------------------------- /src/symbols_icon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lameguy64/PSn00b-Debugger/HEAD/src/symbols_icon.h -------------------------------------------------------------------------------- /src/watch_icon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lameguy64/PSn00b-Debugger/HEAD/src/watch_icon.h -------------------------------------------------------------------------------- /src/watches.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lameguy64/PSn00b-Debugger/HEAD/src/watches.cpp -------------------------------------------------------------------------------- /widgets/Fl_Bookmark_Table.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lameguy64/PSn00b-Debugger/HEAD/widgets/Fl_Bookmark_Table.cpp -------------------------------------------------------------------------------- /widgets/Fl_Bookmark_Table.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lameguy64/PSn00b-Debugger/HEAD/widgets/Fl_Bookmark_Table.h -------------------------------------------------------------------------------- /widgets/Fl_Disassembler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lameguy64/PSn00b-Debugger/HEAD/widgets/Fl_Disassembler.cpp -------------------------------------------------------------------------------- /widgets/Fl_Disassembler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lameguy64/PSn00b-Debugger/HEAD/widgets/Fl_Disassembler.h -------------------------------------------------------------------------------- /widgets/Fl_MemoryView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lameguy64/PSn00b-Debugger/HEAD/widgets/Fl_MemoryView.cpp -------------------------------------------------------------------------------- /widgets/Fl_MemoryView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lameguy64/PSn00b-Debugger/HEAD/widgets/Fl_MemoryView.h -------------------------------------------------------------------------------- /widgets/Fl_RegView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lameguy64/PSn00b-Debugger/HEAD/widgets/Fl_RegView.cpp -------------------------------------------------------------------------------- /widgets/Fl_RegView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lameguy64/PSn00b-Debugger/HEAD/widgets/Fl_RegView.h -------------------------------------------------------------------------------- /widgets/Fl_Source_Browser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lameguy64/PSn00b-Debugger/HEAD/widgets/Fl_Source_Browser.cpp -------------------------------------------------------------------------------- /widgets/Fl_Source_Browser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lameguy64/PSn00b-Debugger/HEAD/widgets/Fl_Source_Browser.h -------------------------------------------------------------------------------- /widgets/Fl_Status_Bar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lameguy64/PSn00b-Debugger/HEAD/widgets/Fl_Status_Bar.cpp -------------------------------------------------------------------------------- /widgets/Fl_Status_Bar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lameguy64/PSn00b-Debugger/HEAD/widgets/Fl_Status_Bar.h -------------------------------------------------------------------------------- /widgets/Fl_Symbol_Table.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lameguy64/PSn00b-Debugger/HEAD/widgets/Fl_Symbol_Table.cpp -------------------------------------------------------------------------------- /widgets/Fl_Symbol_Table.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lameguy64/PSn00b-Debugger/HEAD/widgets/Fl_Symbol_Table.h -------------------------------------------------------------------------------- /widgets/Fl_WatchTable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lameguy64/PSn00b-Debugger/HEAD/widgets/Fl_WatchTable.cpp -------------------------------------------------------------------------------- /widgets/Fl_WatchTable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lameguy64/PSn00b-Debugger/HEAD/widgets/Fl_WatchTable.h -------------------------------------------------------------------------------- /widgets/Main_Window.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lameguy64/PSn00b-Debugger/HEAD/widgets/Main_Window.cpp -------------------------------------------------------------------------------- /widgets/Main_Window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lameguy64/PSn00b-Debugger/HEAD/widgets/Main_Window.h -------------------------------------------------------------------------------- /widgets/mips_disassembler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lameguy64/PSn00b-Debugger/HEAD/widgets/mips_disassembler.cpp -------------------------------------------------------------------------------- /widgets/mips_disassembler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lameguy64/PSn00b-Debugger/HEAD/widgets/mips_disassembler.h --------------------------------------------------------------------------------