summaryrefslogtreecommitdiff
path: root/src/core/gdbstub/gdbstub.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/core/gdbstub/gdbstub.cpp')
-rw-r--r--src/core/gdbstub/gdbstub.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/core/gdbstub/gdbstub.cpp b/src/core/gdbstub/gdbstub.cpp
index 5cf45ada5..123fe7cd4 100644
--- a/src/core/gdbstub/gdbstub.cpp
+++ b/src/core/gdbstub/gdbstub.cpp
@@ -230,6 +230,7 @@ static void GdbHexToMem(u8* dest, const u8* src, size_t len) {
230 * Convert a u32 into a gdb-formatted hex string. 230 * Convert a u32 into a gdb-formatted hex string.
231 * 231 *
232 * @param dest Pointer to buffer to store output hex string characters. 232 * @param dest Pointer to buffer to store output hex string characters.
233 * @param v Value to convert.
233 */ 234 */
234static void IntToGdbHex(u8* dest, u32 v) { 235static void IntToGdbHex(u8* dest, u32 v) {
235 for (int i = 0; i < 8; i += 2) { 236 for (int i = 0; i < 8; i += 2) {