summaryrefslogtreecommitdiffstats
path: root/src/core/gdbstub (unfollow)
Commit message (Collapse)AuthorFilesLines
2017-02-27Doxygen: Amend minor issues (#2593)Mat M1-0/+1
Corrects a few issues with regards to Doxygen documentation, for example: - Incorrect parameter referencing. - Missing @param tags. - Typos in @param tags. and a few minor other issues.
2017-01-04Fix some warnings (#2399)Jonathan Hao1-5/+0
2016-12-22core: Replace "AppCore" nomenclature with just "CPU".bunnei1-20/+19
2016-12-22Address clang-format issues.bunnei1-2/+2
2016-12-22core: Consolidate core and system state, remove system module & cleanups.bunnei1-19/+20
2016-12-16gdbstub: const correctness changesLioncash1-9/+8
Also uses size_t as the length indicator type, as is common with buffers.
2016-12-15gdbstub: Remove global variable from public interfaceLioncash2-12/+19
Currently, this is only ever queried, so adding a function to check if the server is enabled is more sensible. If directly modifying this externally is ever desirable, it should be done by adding a function to the interface, rather than exposing implementation details directly.
2016-12-05gdbstub: Remove unused includeJannik Vogel1-1/+0
2016-12-05Support mingw cross-compileJannik Vogel1-1/+2
2016-11-14Add mingw compile supportJames Rowe1-1/+1
2016-10-28Small fix to let IDA see target.xmlmailwl1-1/+1
2016-09-21Remove special rules for Windows.h and library includesYuri Kunde Schlesner1-1/+1
2016-09-21Remove empty newlines in #include blocks.Emmanuel Gil Peyrot1-1/+0
This makes clang-format useful on those. Also add a bunch of forgotten transitive includes, which otherwise prevented compilation.
2016-09-18Sources: Run clang-format on everything.Emmanuel Gil Peyrot2-52/+63
2016-06-08gdbstub: E0 should be E00shinyquagsire231-1/+1
2016-05-10gdbstub: Silence missing prototype warningsLioncash1-3/+3
2016-05-07fixup simple type conversions where possibleAlexander Laties1-10/+10
2016-04-23gdbstub: Don't check if unsigned int is > 0Sam Spilsbury1-2/+2
2016-04-06Adopted WinterMute's gdbstub changespolaris-1-23/+85
This fixes the comments left on the PR (whitespace, SO_REUSEADDR, comment changes).
2016-03-20Fix missing headerLittleWhite1-0/+2
2015-11-22Fix read and write register blocks in gdbstubpolaris-1-26/+31
Previously, the padding wasn't correctly accounted for which caused the gdbstub to read and write everything after R15 (starting with the dummy FPA registers) incorrectly, which caused CPSR to not be handled correctly. Everything appears to be working as expected with this change.
2015-11-04Fix bug with reading addresses and lengthspolaris-1-45/+55
2015-10-29Change headerspolaris-1-2/+2
2015-10-22Add some headers so TravisCI will hopefully workpolaris-1-0/+2
2015-10-22Use CHAR_BIT instead of 8polaris-1-11/+11
2015-10-22Handle changes pointed out in comments on PRpolaris-1-61/+34
2015-10-21Add a register variable to loopspolaris-1-6/+9
2015-10-21Update register read loops to go with last commitpolaris-1-6/+7
2015-10-21Pad responses to gdb for VFP registerspolaris-1-0/+3
2015-10-21Try to add support for VFP registerspolaris-1-4/+21
2015-10-21Fix buffer overflow commentspolaris-1-2/+3
2015-10-12Remove unnecessary new lines, changed Deinit to Shutdownpolaris-2-6/+6
2015-10-04Use BreakpointAddress struct instead of passing address directlypolaris-2-5/+15
2015-10-04Implement gdbstubpolaris-2-0/+1029
2015-09-20Implement gdbstubpolaris-2-0/+1029