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:
parent
4b755deea0
commit
9c8b63110d
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Reference in New Issue