From 9ce65b7d3573d92e1d98a13b58a5d5763ba073c5 Mon Sep 17 00:00:00 2001 From: Julian Blake Kongslie Date: Sun, 5 Jun 2022 15:34:23 -0700 Subject: Working L1 cache. --- hdl/fifo.sv | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'hdl/fifo.sv') diff --git a/hdl/fifo.sv b/hdl/fifo.sv index 19877c4..9399006 100644 --- a/hdl/fifo.sv +++ b/hdl/fifo.sv @@ -1,6 +1,6 @@ module fifo #( WIDTH_BITS = 1 - , DEPTH_BITS = 10 + , DEPTH_BITS = 8 ) ( input bit clock_in , input bit clock_out @@ -21,7 +21,7 @@ module fifo typedef bit [DEPTH_BITS-1:0] addr_t; typedef bit [DEPTH_BITS:0] grey_t; - data_t data [DEPTH-1:0]; + (* ramstyle = "no_rw_check, M9K" *) data_t data [DEPTH-1:0]; addr_t oldest, youngest; bit oldest_wrap, youngest_wrap; -- cgit v1.2.3