MemoryView auto updateDebugger. Implement base codetrace logic. Add register breakpoints. Add CodeViewWidget autostepping to track a value.Debugger

This commit is contained in:
TryTwo
2022-03-26 14:48:25 -07:00
parent 9ca1c0f533
commit fb79c04cf1
8 changed files with 611 additions and 0 deletions

View File

@ -46,6 +46,7 @@ private:
void AddRegister(int row, int column, RegisterType type, std::string register_name,
std::function<u64()> get_reg, std::function<void(u64)> set_reg);
void AutoStep(const std::string& reg) const;
void Update();
QTableWidget* m_table;