summaryrefslogtreecommitdiff
path: root/src/core/debugger/gdbstub.cpp
AgeCommit message (Collapse)Author
2024-12-20externals: update fmt to 11.0.2 and vcpkg to 2024.09.30 (#68)lui
Updated to fmt 11 with the required source changes for it to work. Also updated vcpkg for this, and as an added benefit it fixes the `Unable to find a valid Visual Studio instance` error, and the VS 2019 build tools are no longer required. Just make sure to delete the existing downloaded vcpkg tool and binaries in `externals/vcpkg` if you have compiled before, or else it will continue to use the old version and give the error. Reviewed-on: http://vub63vv26q6v27xzv2dtcd25xumubshogm67yrpaz2rculqxs7jlfqad.onion/torzu-emu/torzu/pulls/68 Co-authored-by: lui <lui@vub63vv26q6v27xzv2dtcd25xumubshogm67yrpaz2rculqxs7jlfqad.onion> Co-committed-by: lui <lui@vub63vv26q6v27xzv2dtcd25xumubshogm67yrpaz2rculqxs7jlfqad.onion>
2024-12-20Using reserve() for optimization inserts, marked unused pair items and minor ↵Herman Semenov
code refactor
2024-01-12kernel: fix debugger and process list lifetimeLiam
2024-01-08Fix typos in src/core (#12625)Viktor Szépe
* Fix typos in src/core * Fix typo correction * Fix indentation of MemoryStateNames * Fix indent
2023-12-04core: refactor emulated cpu core activationLiam
2023-11-11gdbstub: read module information from memory layoutLiam
2023-11-10kernel: add KPageTableBaseLiam
Co-authored-by: Kelebek1 <eeeedddccc@hotmail.co.uk>
2023-10-21kernel: update KProcessLiam
2023-10-20gdbstub: add PermissionLocked to mappings tableLiam
2023-10-01gdbserver: use numeric character references for unicodeLiam
2023-08-14gdbstub: fixup replaced instruction bytes in memory readsLiam
2023-07-22core: reduce TOCTTOU memory accessLiam
2023-07-14k_process: PageTable -> GetPageTableLiam
2023-03-23memory: rename global memory references to application memoryLiam
2023-03-22kernel: use KTypedAddress for addressesLiam
2023-03-12kernel: convert KProcess to new styleLiam
2023-03-12kernel: convert KThread to new styleLiam
2023-02-21service: refactor server architectureLiam
Converts services to have their own processes
2023-02-13general: rename CurrentProcess to ApplicationProcessLiam
2023-01-12debugger: add host fastmem pointer fetch commandLiam
2022-11-10gdbstub: add ams monitor commandsLiam
2022-06-25gdbstub: fix register pokesLiam
2022-06-16core/debugger: memory breakpoint supportLiam
2022-06-10core/debugger: fix a number of shutdown deadlocksLiam
2022-06-03gdbstub: add missing library list commandLiam
2022-06-01core/debugger: Support reading guest thread namesLiam
2022-06-01Merge pull request #8402 from liamwhite/better-stepMorph
core/debugger: Improved stepping mechanism and misc fixes
2022-06-01core/debugger: Improved stepping mechanism and misc fixesLiam
2022-06-01gdbstub: Explicitly cast return type to u8Morph
Otherwise, the addition promotes the returned value to an int instead of keeping it as a u8.
2022-06-01core/debugger: Implement new GDB stub debuggerLiam