summaryrefslogtreecommitdiffstats
path: root/src/core/gdbstub (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Doxygen: Amend minor issues (#2593)Mat M2017-02-271-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.
* Fix some warnings (#2399)Jonathan Hao2017-01-041-5/+0
|
* core: Replace "AppCore" nomenclature with just "CPU".bunnei2016-12-221-20/+19
|
* Address clang-format issues.bunnei2016-12-221-2/+2
|
* core: Consolidate core and system state, remove system module & cleanups.bunnei2016-12-221-19/+20
|
* gdbstub: const correctness changesLioncash2016-12-161-9/+8
| | | | Also uses size_t as the length indicator type, as is common with buffers.
* gdbstub: Remove global variable from public interfaceLioncash2016-12-152-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.
* gdbstub: Remove unused includeJannik Vogel2016-12-051-1/+0
|
* Support mingw cross-compileJannik Vogel2016-12-051-1/+2
|
* Add mingw compile supportJames Rowe2016-11-141-1/+1
|
* Small fix to let IDA see target.xmlmailwl2016-10-281-1/+1
|
* Remove special rules for Windows.h and library includesYuri Kunde Schlesner2016-09-211-1/+1
|
* Remove empty newlines in #include blocks.Emmanuel Gil Peyrot2016-09-211-1/+0
| | | | | | | This makes clang-format useful on those. Also add a bunch of forgotten transitive includes, which otherwise prevented compilation.
* Sources: Run clang-format on everything.Emmanuel Gil Peyrot2016-09-182-52/+63
|
* gdbstub: E0 should be E00shinyquagsire232016-06-081-1/+1
|
* gdbstub: Silence missing prototype warningsLioncash2016-05-101-3/+3
|
* fixup simple type conversions where possibleAlexander Laties2016-05-071-10/+10
|
* gdbstub: Don't check if unsigned int is > 0Sam Spilsbury2016-04-231-2/+2
|
* Adopted WinterMute's gdbstub changespolaris-2016-04-061-23/+85
| | | | | This fixes the comments left on the PR (whitespace, SO_REUSEADDR, comment changes).
* Fix missing headerLittleWhite2016-03-201-0/+2
|
* Fix read and write register blocks in gdbstubpolaris-2015-11-221-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.
* Fix bug with reading addresses and lengthspolaris-2015-11-041-45/+55
|
* Change headerspolaris-2015-10-291-2/+2
|
* Add some headers so TravisCI will hopefully workpolaris-2015-10-221-0/+2
|
* Use CHAR_BIT instead of 8polaris-2015-10-221-11/+11
|
* Handle changes pointed out in comments on PRpolaris-2015-10-221-61/+34
|
* Add a register variable to loopspolaris-2015-10-211-6/+9
|
* Update register read loops to go with last commitpolaris-2015-10-211-6/+7
|
* Pad responses to gdb for VFP registerspolaris-2015-10-211-0/+3
|
* Try to add support for VFP registerspolaris-2015-10-211-4/+21
|
* Fix buffer overflow commentspolaris-2015-10-211-2/+3
|
* Remove unnecessary new lines, changed Deinit to Shutdownpolaris-2015-10-122-6/+6
|
* Use BreakpointAddress struct instead of passing address directlypolaris-2015-10-042-5/+15
|
* Implement gdbstubpolaris-2015-10-042-0/+1029