Results 7 comments of Manar

@Prince-Joy Can you make sure of the following ?  - if the reset signal is asynchronous, you will need to add it to the ignored inputs during simulation; using `--ignoring`.This...

In the SPICE netlist, I can see that one port is uppercase and the other is lowercase. So, I think in this example the SPICE is case sensitive. ``` .subckt...

@deepsita I believe the behavioral models are buggy in the original PDK (see https://github.com/google/skywater-pdk/issues/310) . However, you can simulate with the functional models by passing the FUNCTIONAL define to iverilog...

@deepsita See issues (https://github.com/google/skywater-pdk/issues/298, https://github.com/google/skywater-pdk/issues/297), The current solution (until they are addressed in the skywater-pdk repo) is to manually comment out the `wire 1;` statement and correct `endif SKY130_FD_SC_HD__LPFLOW_BLEEDER_FUNCTIONAL_V` to...

@vijayank88 Another possible solution is to run the spice extraction on the gds instead of the lef view. This solution is generally better than setting `QUIT_ON_ILLEGAL_OVERLAPS` to zero because if...

This wasn't an issue with a very old versions of openroad (for example: `1415572a73d43dfc91ba4501170fe6a245729e87`) because we were able to tell pdngen which pins to connect on the macro by specifying...

@Preetbatavia The issue is coming from the original PDK files. So, the current solution is to manually comment out the `wire 1` statement until this issue https://github.com/google/skywater-pdk/issues/297 is addressed in...