Skip to content

Commit

Permalink
Exclude substrate ground connections for Simulation
Browse files Browse the repository at this point in the history
  • Loading branch information
heavySea committed May 5, 2021
1 parent d0e49b9 commit 56ec9e6
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions verilog/rtl/mgmt_protect_hv.v
Original file line number Diff line number Diff line change
Expand Up @@ -45,8 +45,11 @@ module mgmt_protect_hv (
`ifdef USE_POWER_PINS
// This is to emulate the substrate shorting grounds together for LVS
// purposes
assign vssa2 = vssa1;
assign vssa1 = vssd;
`ifndef SIM
assign vssa2 = vssa1;
assign vssa1 = vssd;
`endif

`endif

// Logic high in the VDDA (3.3V) domains
Expand Down

0 comments on commit 56ec9e6

Please sign in to comment.