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.
This commit is contained in:
Cary R 2007-11-13 14:18:12 -08:00 committed by Stephen Williams
parent 4b755deea0
commit 9c8b63110d
1 changed files with 2 additions and 0 deletions

View File

@ -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;