From 32fbf183982069e031ff11679b6e5d3ce8509969 Mon Sep 17 00:00:00 2001 From: mkorbel1 Date: Mon, 25 Sep 2023 23:58:12 +0000 Subject: [PATCH] =?UTF-8?q?Deploying=20to=20docs=20from=20@=20intel/rohd-v?= =?UTF-8?q?f@b8ee7c4fd38654bf3079f31f86d17cd0f38bbed2=20=F0=9F=9A=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- rohd_vf/LogicWaiter/waitCycles.html | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/rohd_vf/LogicWaiter/waitCycles.html b/rohd_vf/LogicWaiter/waitCycles.html index 55b60c4..f856453 100644 --- a/rohd_vf/LogicWaiter/waitCycles.html +++ b/rohd_vf/LogicWaiter/waitCycles.html @@ -76,6 +76,9 @@

waitCycles method

Returns a Future which completes after the specified numCycles, where each cycle is defined as the next occurence of the specified edge.

width must be 1 or an Exception will be thrown.

+

Like nextNegedge and nextPosedge, this will only detect valid edge +transitions. If the value is invalid (x or z) before or after the +transition, it will not count as a cycle.

@@ -96,7 +99,10 @@

Implementation

await nextNegedge; break; case Edge.any: - await nextChanged; + await Future.any([ + nextPosedge, + nextNegedge, + ]); break; } }