From f422a5fd9e83c69d4158a165edc47f45bcf600c4 Mon Sep 17 00:00:00 2001 From: Alejandro Soto Date: Tue, 3 Oct 2023 07:45:12 -0600 Subject: rtl/cache: implement ll/sc line monitor --- rtl/cache/cache.sv | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'rtl/cache/cache.sv') 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 -- cgit v1.2.3