From 9d5468887e2c3bec2f6f09d8bea9169b99476176 Mon Sep 17 00:00:00 2001 From: David Harris Date: Wed, 24 Aug 2022 16:30:25 -0700 Subject: [PATCH] Ram cleanup --- pipelined/src/uncore/ram.sv | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pipelined/src/uncore/ram.sv b/pipelined/src/uncore/ram.sv index b850321e8..5e7ab6b74 100644 --- a/pipelined/src/uncore/ram.sv +++ b/pipelined/src/uncore/ram.sv @@ -54,7 +54,7 @@ module ram #(parameter BASE=0, RANGE = 65535) ( // a new AHB transactions starts when HTRANS requests a transaction, // the peripheral is selected, and the previous transaction is completing - assign initTrans = HREADY & HSELRam & (HTRANS[1]); + assign initTrans = HREADY & HSELRam & HTRANS[1]; assign memwrite = initTrans & HWRITE; assign memread = initTrans & ~HWRITE;