diff options
| author | Alejandro Soto <alejandro@34project.org> | 2023-10-03 07:45:12 -0600 |
|---|---|---|
| committer | Alejandro Soto <alejandro@34project.org> | 2023-10-03 07:45:26 -0600 |
| commit | f422a5fd9e83c69d4158a165edc47f45bcf600c4 (patch) | |
| tree | 8a00b06832eefeba28add6db77b4b486cdfe4767 /rtl/cache/cache.sv | |
| parent | 6ddd97b7289b043c41ac65ae35931bd5b5acfaeb (diff) | |
rtl/cache: implement ll/sc line monitor
Diffstat (limited to 'rtl/cache/cache.sv')
| -rw-r--r-- | rtl/cache/cache.sv | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/rtl/cache/cache.sv b/rtl/cache/cache.sv index 29403e2..1b327b4 100644 --- a/rtl/cache/cache.sv +++ b/rtl/cache/cache.sv @@ -97,4 +97,12 @@ module cache .* ); + line monitor_update; + logic monitor_acquire, monitor_commit, monitor_fail, monitor_release; + + cache_monitor monitor + ( + .* + ); + endmodule |
