CsrTop constructor
- CsrTopConfig config,
- Logic clk,
- Logic reset,
- DataPortInterface fdw,
- DataPortInterface fdr,
create the CsrBlock from a configuration
Implementation
factory CsrTop(
CsrTopConfig config,
Logic clk,
Logic reset,
DataPortInterface fdw,
DataPortInterface fdr,
) =>
CsrTop._(
config: config,
clk: clk,
reset: reset,
fdw: fdw,
fdr: fdr,
);