From: Cole Poirier Date: Fri, 25 Sep 2020 20:08:19 +0000 (-0700) Subject: wb_types.py add reset value of 0b11111111 for WBSelType, which is the value of the... X-Git-Tag: 24jan2021_ls180~324 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;ds=sidebyside;h=53d11eb95be2d7fc198eb8d0612608c9c5532790;p=soc.git 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 --- 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;