From 2cd0f19129ca9c3caaf709ed9942bcfab610e3fc Mon Sep 17 00:00:00 2001 From: bbracker Date: Fri, 5 Mar 2021 14:27:38 -0500 Subject: [PATCH] remove deprecated mem signals --- wally-pipelined/src/uncore/uncore.sv | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/wally-pipelined/src/uncore/uncore.sv b/wally-pipelined/src/uncore/uncore.sv index a46ca6ba3..ff0111cfc 100644 --- a/wally-pipelined/src/uncore/uncore.sv +++ b/wally-pipelined/src/uncore/uncore.sv @@ -83,18 +83,6 @@ module uncore ( `endif adrdec uartdec(HADDR, `UARTBASE, `UARTRANGE, PreHSELUART); assign HSELUART = PreHSELUART && (HSIZE == 3'b000); // only byte writes to UART are supported - - // Enable read or write based on decoded address - assign MemRW = {~HWRITE, HWRITED}; - `ifdef BOOTTIMBASE - assign MemRWboottim = MemRW & {2{HSELBootTim}}; - `endif - assign MemRWtim = MemRW & {2{HSELTim}}; - assign MemRWclint = MemRW & {2{HSELCLINT}}; - `ifdef GPIOBASE - assign MemRWgpio = MemRW & {2{HSELGPIO}}; - `endif - assign MemRWuart = MemRW & {2{HSELUART}}; // subword accesses: converts HWDATAIN to HWDATA subwordwrite sww(.*);