From 9c8b63110d5a1dd14c3673aafb9a43e5ef23fb5c Mon Sep 17 00:00:00 2001 From: Cary R Date: Tue, 13 Nov 2007 14:18:12 -0800 Subject: [PATCH] CMOS is strength aware CMOS gates like NMOS and PMOS have a strength aware output. They were missed when the NMOS and PMOS were fixed. "cmos.v" will now pass in the test suite. --- tgt-vvp/vvp_scope.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tgt-vvp/vvp_scope.c b/tgt-vvp/vvp_scope.c index 45cbed5ae..3f6012dc4 100644 --- a/tgt-vvp/vvp_scope.c +++ b/tgt-vvp/vvp_scope.c @@ -700,6 +700,8 @@ static int nexus_drive_is_strength_aware(ivl_nexus_ptr_t nptr) return 1; if (ivl_logic_type(log) == IVL_LO_NMOS) return 1; + if (ivl_logic_type(log) == IVL_LO_CMOS) + return 1; } return 0;