summaryrefslogtreecommitdiff
path: root/src/core/gdbstub
diff options
context:
space:
mode:
authorGravatar bunnei2017-08-28 21:09:42 -0400
committerGravatar bunnei2017-09-30 14:28:53 -0400
commit3411883fe32786c08bbdb28fd35e0b39a420be41 (patch)
tree5d041dd65fcc20f2b8226f70b718a9c72e0bae5a /src/core/gdbstub
parentelf: Check if machine is ARM. (diff)
downloadyuzu-3411883fe32786c08bbdb28fd35e0b39a420be41.tar.gz
yuzu-3411883fe32786c08bbdb28fd35e0b39a420be41.tar.xz
yuzu-3411883fe32786c08bbdb28fd35e0b39a420be41.zip
arm: Use 64-bit addressing in a bunch of places.
Diffstat (limited to 'src/core/gdbstub')
-rw-r--r--src/core/gdbstub/gdbstub.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/gdbstub/gdbstub.h b/src/core/gdbstub/gdbstub.h
index 38177e32c..8f12c6a1d 100644
--- a/src/core/gdbstub/gdbstub.h
+++ b/src/core/gdbstub/gdbstub.h
@@ -69,7 +69,7 @@ void HandlePacket();
69 * @param addr Address to search from. 69 * @param addr Address to search from.
70 * @param type Type of breakpoint. 70 * @param type Type of breakpoint.
71 */ 71 */
72BreakpointAddress GetNextBreakpointFromAddress(u32 addr, GDBStub::BreakpointType type); 72BreakpointAddress GetNextBreakpointFromAddress(PAddr addr, GDBStub::BreakpointType type);
73 73
74/** 74/**
75 * Check if a breakpoint of the specified type exists at the given address. 75 * Check if a breakpoint of the specified type exists at the given address.
@@ -77,7 +77,7 @@ BreakpointAddress GetNextBreakpointFromAddress(u32 addr, GDBStub::BreakpointType
77 * @param addr Address of breakpoint. 77 * @param addr Address of breakpoint.
78 * @param type Type of breakpoint. 78 * @param type Type of breakpoint.
79 */ 79 */
80bool CheckBreakpoint(u32 addr, GDBStub::BreakpointType type); 80bool CheckBreakpoint(PAddr addr, GDBStub::BreakpointType type);
81 81
82// If set to true, the CPU will halt at the beginning of the next CPU loop. 82// If set to true, the CPU will halt at the beginning of the next CPU loop.
83bool GetCpuHaltFlag(); 83bool GetCpuHaltFlag();