From 53d11eb95be2d7fc198eb8d0612608c9c5532790 Mon Sep 17 00:00:00 2001 From: Cole Poirier Date: Fri, 25 Sep 2020 13:08:19 -0700 Subject: [PATCH] wb_types.py add reset value of 0b11111111 for WBSelType, which is the value of the WBMasterOut object's field 'sel', wich is the 'r.wb.sel' value that appears in both icache.py and dcache.py, source of this reset value is line 614 of icache.vhdl --- src/soc/experiment/wb_types.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/soc/experiment/wb_types.py b/src/soc/experiment/wb_types.py index 4385a3ed..bcf64b42 100644 --- a/src/soc/experiment/wb_types.py +++ b/src/soc/experiment/wb_types.py @@ -38,7 +38,7 @@ def WBDataType(): return Signal(WB_DATA_BITS, name="dat") def WBSelType(): - return Signal(WB_SEL_BITS, name="sel") + return Signal(WB_SEL_BITS, name="sel", reset=0b11111111) # type wishbone_master_out is record # adr : wishbone_addr_type; -- 2.30.2