Skip to content

Commit

Permalink
chore: IsAddressBreakpointAt remove (BreakPointHolder)
Browse files Browse the repository at this point in the history
Signed-off-by: Maximilien Noal <noal.maximilien@gmail.com>
  • Loading branch information
maximilien-noal committed Nov 5, 2024
1 parent 57e9bd5 commit 87a1f20
Showing 1 changed file with 0 additions and 9 deletions.
9 changes: 0 additions & 9 deletions src/Spice86.Core/Emulator/VM/Breakpoint/BreakPointHolder.cs
Original file line number Diff line number Diff line change
Expand Up @@ -95,13 +95,4 @@ public void TriggerBreakPointsWithAddressRange(long startAddress, long endAddres
TriggerMatchingBreakPoints(address);
}
}

/// <summary>
/// Determines whether there is an address breakpoint at the specified address.
/// </summary>
/// <param name="instructionAddress">The memory address to check.</param>
/// <returns>Whether there is an address breakpoint at the specified address.</returns>
public bool IsAddressBreakpointAt(long instructionAddress) {
return _addressBreakPoints.ContainsKey(instructionAddress);
}
}

0 comments on commit 87a1f20

Please sign in to comment.