GDB Stub: correctly define the breakpoint type values

Read only and Write only were reversed, now they are properly defined.
This commit is contained in:
aldelaro5
2022-01-01 17:18:32 -05:00
parent 70b7e16d6c
commit 9c784ca8ab
+1 -1
View File
@@ -53,8 +53,8 @@ enum class BreakpointType
{
ExecuteSoft = 0,
ExecuteHard,
Read,
Write,
Read,
Access,
};