diff options
| author | DrChat <arkolbed@gmail.com> | 2018-02-09 18:26:12 -0600 |
|---|---|---|
| committer | DrChat <arkolbed@gmail.com> | 2018-02-09 18:26:12 -0600 |
| commit | 190108dab6732d9db5c8595e1358b7b034cb5a14 (patch) | |
| tree | 779d327dae7bd4132fe75d7dd628ceb221359a28 | |
| parent | 7da973d9e6d1e029f21007e3883fe4abb20196b7 (diff) | |
[CPU] Add some more docs to MMIO handler functions
| -rw-r--r-- | src/xenia/cpu/mmio_handler.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/xenia/cpu/mmio_handler.h b/src/xenia/cpu/mmio_handler.h index 1e2f433cc..e68a2e276 100644 --- a/src/xenia/cpu/mmio_handler.h +++ b/src/xenia/cpu/mmio_handler.h @@ -73,7 +73,11 @@ class MMIOHandler { WatchType type, AccessWatchCallback callback, void* callback_context, void* callback_data); void CancelAccessWatch(uintptr_t watch_handle); + + // Fires and clears any access watches that overlap this range. void InvalidateRange(uint32_t physical_address, size_t length); + + // Returns true if /any/ part of this range is watched. bool IsRangeWatched(uint32_t physical_address, size_t length); protected: |
