diff options
Diffstat (limited to 'ARMeilleure/Memory/IMemoryManager.cs')
-rw-r--r-- | ARMeilleure/Memory/IMemoryManager.cs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/ARMeilleure/Memory/IMemoryManager.cs b/ARMeilleure/Memory/IMemoryManager.cs index 0a25eb97..c4ea70d1 100644 --- a/ARMeilleure/Memory/IMemoryManager.cs +++ b/ARMeilleure/Memory/IMemoryManager.cs @@ -70,6 +70,7 @@ namespace ARMeilleure.Memory /// <param name="va">Virtual address of the region</param> /// <param name="size">Size of the region</param> /// <param name="write">True if the region was written, false if read</param> - void SignalMemoryTracking(ulong va, ulong size, bool write); + /// <param name="precise">True if the access is precise, false otherwise</param> + void SignalMemoryTracking(ulong va, ulong size, bool write, bool precise = false); } }
\ No newline at end of file |