From 8653c3c58637b91b957d08295585409d0810dd75 Mon Sep 17 00:00:00 2001 From: mkorbel1 Date: Fri, 22 Sep 2023 18:55:48 +0000 Subject: [PATCH] =?UTF-8?q?Deploying=20to=20docs=20from=20@=20intel/rohd@8?= =?UTF-8?q?e9959ca45e4ff5fd4d7af6b2ac915aae66b27aa=20=F0=9F=9A=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- rohd/Module/inputs.html | 8 +++++++- .../instantiationVerilogWithParameters.html | 4 ++++ 2 files changed, 11 insertions(+), 1 deletion(-) diff --git a/rohd/Module/inputs.html b/rohd/Module/inputs.html index 6fe332625..7873a1250 100644 --- a/rohd/Module/inputs.html +++ b/rohd/Module/inputs.html @@ -66,6 +66,11 @@

inputs property
+
+
    +
  1. @protected
  2. +
+
Map<String, Logic> inputs @@ -81,7 +86,8 @@

inputs property

Implementation

-
Map<String, Logic> get inputs => UnmodifiableMapView<String, Logic>(_inputs);
+
@protected
+Map<String, Logic> get inputs => UnmodifiableMapView<String, Logic>(_inputs);

diff --git a/rohd/SystemVerilogSynthesizer/instantiationVerilogWithParameters.html b/rohd/SystemVerilogSynthesizer/instantiationVerilogWithParameters.html index e1bb7a292..e870f070a 100644 --- a/rohd/SystemVerilogSynthesizer/instantiationVerilogWithParameters.html +++ b/rohd/SystemVerilogSynthesizer/instantiationVerilogWithParameters.html @@ -111,12 +111,16 @@

Implementation

//non-custom needs more details final connections = <String>[]; + + // ignore: invalid_use_of_protected_member module.inputs.forEach((signalName, logic) { connections.add('.$signalName(${inputs[signalName]})'); }); + module.outputs.forEach((signalName, logic) { connections.add('.$signalName(${outputs[signalName]})'); }); + final connectionsStr = connections.join(','); var parameterString = ''; if (parameters != null) {