mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2025-10-05 10:49:34 +02:00
GP-2294: Highlight PC with higher priority than breakpoints.
This commit is contained in:
parent
cf63740630
commit
53b540fc09
1 changed files with 2 additions and 1 deletions
|
@ -495,7 +495,8 @@ public class DebuggerListingProvider extends CodeViewerProvider {
|
|||
if (markerService != null && markedAddress != null) {
|
||||
trackingMarker = markerService.createPointMarker("Tracked Register",
|
||||
"An address stored by a trace register, mapped to a static program", markedProgram,
|
||||
0, true, true, true, trackingColor, ICON_REGISTER_MARKER, true);
|
||||
MarkerService.HIGHLIGHT_PRIORITY + 1, true, true, true, trackingColor,
|
||||
ICON_REGISTER_MARKER, true);
|
||||
trackingMarker.add(markedAddress);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue