From 2953106ec79f7907b90e15989d07302f01a7b9ac Mon Sep 17 00:00:00 2001 From: David Anderson Date: Fri, 6 Sep 2024 10:04:50 -0700 Subject: [PATCH] lib/ECP5_RAM: mark interfaces always_ready Elides a couple of unnecessary signals from the design --- lib/ECP5_RAM.bsv | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/ECP5_RAM.bsv b/lib/ECP5_RAM.bsv index c53a9d2..def3a66 100644 --- a/lib/ECP5_RAM.bsv +++ b/lib/ECP5_RAM.bsv @@ -237,6 +237,7 @@ endfunction // // EBRPort is a port of an EBR memory. +(* always_ready *) interface EBRPort#(type addr, type data); method Action put(UInt#(3) chip_select, Bool write, addr address, data datain); method data read();