CsrTop constructor

CsrTop(
  1. CsrTopConfig config,
  2. Logic clk,
  3. Logic reset,
  4. DataPortInterface fdw,
  5. 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,
    );