summaryrefslogtreecommitdiffstats
path: root/src/core/debugger/gdbstub_arch.cpp (unfollow)
Commit message (Collapse)AuthorFilesLines
2023-03-13kernel: convert KThread to new styleLiam1-2/+2
2023-02-15remove constexpr from virtual functionarades791-2/+2
Signed-off-by: arades79 <scravers@protonmail.com>
2023-02-14use a string view to skip allocationarades791-10/+4
Signed-off-by: arades79 <scravers@protonmail.com>
2023-02-14add static lifetime to constexpr values to force compile time evaluation where possiblearades791-2/+2
Signed-off-by: arades79 <scravers@protonmail.com>
2022-06-30gdbstub_arch: Directly access SP registerlat9nq1-2/+6
Currently to access the SP register, RegRead and RegWrite rely on a out-of-bounds array access to reach the next element in a struct. As of writing only git versions of GCC catch this error. Specify the SP register when we want to access it in these functions.
2022-06-02gdbstub: fix target descriptionsLiam1-8/+85
2022-06-01core/debugger: Implement new GDB stub debuggerLiam1-0/+406