From 83eb76e0b3f6570b5e27e2295551f648eea96d86 Mon Sep 17 00:00:00 2001 From: Julian Blake Kongslie Date: Sun, 5 Jun 2022 16:23:07 -0700 Subject: Add cache clearing to the command parser. --- hdl/top.sv | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'hdl/top.sv') diff --git a/hdl/top.sv b/hdl/top.sv index 26006be..5f98ff9 100644 --- a/hdl/top.sv +++ b/hdl/top.sv @@ -234,6 +234,8 @@ module top , .out_data(ram_tx_data) ); + bit clear_caches; + command_parser parser ( .clock(internal_clock) , .reset(internal_reset) @@ -253,6 +255,8 @@ module top , .loop_ready(loop_ready) , .loop_valid(loop_valid) , .loop_data(loop_data) + + , .clear_caches(clear_caches) ); mem_arbiter memarb @@ -491,6 +495,8 @@ module top ( .clock(internal_clock) , .reset(internal_reset) + , .clear(clear_caches) + , .core_command_ready(cache_command_ready) , .core_command_valid(cache_command_valid) , .core_command_data(cache_command_data) -- cgit v1.2.3