code stringlengths 35 6.69k | score float64 6.5 11.5 |
|---|---|
module sky130_fd_sc_hvl__conb (
HI,
LO
);
// Module ports
output HI;
output LO;
// Name Output
pullup pullup0 (HI);
pulldown pulldown0 (LO);
endmodule
| 7.212805 |
module sky130_fd_sc_hvl__conb (
HI,
LO
);
// Module ports
output HI;
output LO;
// Module supplies
supply1 VPWR;
supply0 VGND;
supply1 VPB;
supply0 VNB;
// Name Output
pullup pullup0 (HI);
pulldown pulldown0 (LO);
endmodule
| 7.212805 |
module sky130_fd_sc_hvl__conb_1 (
HI,
LO,
VPWR,
VGND,
VPB,
VNB
);
output HI;
output LO;
input VPWR;
input VGND;
input VPB;
input VNB;
sky130_fd_sc_hvl__conb base (
.HI (HI),
.LO (LO),
.VPWR(VPWR),
.VGND(VGND),
.VPB (VPB),
.VNB (VNB)
);
endmodule
| 7.212805 |
module sky130_fd_sc_hvl__conb_1 (
HI,
LO
);
output HI;
output LO;
// Voltage supply signals
supply1 VPWR;
supply0 VGND;
supply1 VPB;
supply0 VNB;
sky130_fd_sc_hvl__conb base (
.HI(HI),
.LO(LO)
);
endmodule
| 7.212805 |
module sky130_fd_sc_hvl__decap (
VPWR,
VGND,
VPB,
VNB
);
// Module ports
input VPWR;
input VGND;
input VPB;
input VNB;
// No contents.
endmodule
| 7.212805 |
module sky130_fd_sc_hvl__decap ();
// No contents.
endmodule
| 7.212805 |
module sky130_fd_sc_hvl__decap ();
// Module supplies
supply1 VPWR;
supply0 VGND;
supply1 VPB;
supply0 VNB;
// No contents.
endmodule
| 7.212805 |
module sky130_fd_sc_hvl__decap_4 (
VPWR,
VGND,
VPB,
VNB
);
input VPWR;
input VGND;
input VPB;
input VNB;
sky130_fd_sc_hvl__decap base (
.VPWR(VPWR),
.VGND(VGND),
.VPB (VPB),
.VNB (VNB)
);
endmodule
| 7.212805 |
module sky130_fd_sc_hvl__decap_4 ();
// Voltage supply signals
supply1 VPWR;
supply0 VGND;
supply1 VPB;
supply0 VNB;
sky130_fd_sc_hvl__decap base ();
endmodule
| 7.212805 |
module sky130_fd_sc_hvl__decap_8 (
VPWR,
VGND,
VPB,
VNB
);
input VPWR;
input VGND;
input VPB;
input VNB;
sky130_fd_sc_hvl__decap base (
.VPWR(VPWR),
.VGND(VGND),
.VPB (VPB),
.VNB (VNB)
);
endmodule
| 7.212805 |
module sky130_fd_sc_hvl__decap_8 ();
// Voltage supply signals
supply1 VPWR;
supply0 VGND;
supply1 VPB;
supply0 VNB;
sky130_fd_sc_hvl__decap base ();
endmodule
| 7.212805 |
module sky130_fd_sc_hvl__dfrbp (
Q,
Q_N,
CLK,
D,
RESET_B,
VPWR,
VGND,
VPB,
VNB
);
// Module ports
output Q;
output Q_N;
input CLK;
input D;
input RESET_B;
input VPWR;
input VGND;
input VPB;
input VNB;
// Local signals
wire buf_Q;
wire RESET;
reg notifier;
wire cond0;
wire D_delayed;
wire RESET_B_delayed;
wire CLK_delayed;
wire buf0_out_Q;
wire not1_out_qn;
// Name Output Other arguments
not not0 (RESET, RESET_B_delayed);
sky130_fd_sc_hvl__udp_dff$PR_pp$PG$N dff0 (
buf_Q,
D_delayed,
CLK_delayed,
RESET,
notifier,
VPWR,
VGND
);
assign cond0 = (RESET_B_delayed === 1'b1);
buf buf0 (buf0_out_Q, buf_Q);
sky130_fd_sc_hvl__udp_pwrgood_pp$PG pwrgood_pp0 (
Q,
buf0_out_Q,
VPWR,
VGND
);
not not1 (not1_out_qn, buf_Q);
sky130_fd_sc_hvl__udp_pwrgood_pp$PG pwrgood_pp1 (
Q_N,
not1_out_qn,
VPWR,
VGND
);
endmodule
| 7.212805 |
module sky130_fd_sc_hvl__dfrbp (
Q ,
Q_N ,
CLK ,
D ,
RESET_B
);
// Module ports
output Q ;
output Q_N ;
input CLK ;
input D ;
input RESET_B;
// Local signals
wire buf_Q;
wire RESET;
// Delay Name Output Other arguments
not not0 (RESET , RESET_B );
sky130_fd_sc_hvl__udp_dff$PR `UNIT_DELAY dff0 (buf_Q , D, CLK, RESET );
buf buf0 (Q , buf_Q );
not not1 (Q_N , buf_Q );
endmodule
| 7.212805 |
module sky130_fd_sc_hvl__dfrbp (
Q,
Q_N,
CLK,
D,
RESET_B
);
// Module ports
output Q;
output Q_N;
input CLK;
input D;
input RESET_B;
// Module supplies
supply1 VPWR;
supply0 VGND;
supply1 VPB;
supply0 VNB;
// Local signals
wire buf_Q;
wire RESET;
reg notifier;
wire cond0;
wire D_delayed;
wire RESET_B_delayed;
wire CLK_delayed;
// Name Output Other arguments
not not0 (RESET, RESET_B_delayed);
sky130_fd_sc_hvl__udp_dff$PR_pp$PG$N dff0 (
buf_Q,
D_delayed,
CLK_delayed,
RESET,
notifier,
VPWR,
VGND
);
assign cond0 = (RESET_B_delayed === 1'b1);
buf buf0 (Q, buf_Q);
not not1 (Q_N, buf_Q);
endmodule
| 7.212805 |
module sky130_fd_sc_hvl__dfrbp_1 (
Q,
Q_N,
CLK,
D,
RESET_B,
VPWR,
VGND,
VPB,
VNB
);
output Q;
output Q_N;
input CLK;
input D;
input RESET_B;
input VPWR;
input VGND;
input VPB;
input VNB;
sky130_fd_sc_hvl__dfrbp base (
.Q(Q),
.Q_N(Q_N),
.CLK(CLK),
.D(D),
.RESET_B(RESET_B),
.VPWR(VPWR),
.VGND(VGND),
.VPB(VPB),
.VNB(VNB)
);
`ifdef FUNCTIONAL
/*
* Copyright 2020 The SkyWater PDK Authors
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
* SPDX-License-Identifier: Apache-2.0
*/
wire RESETB_delayed, CLK_delayed, D_delayed, COND0;
reg notifier;
specify
(negedge RESET_B => (Q +: RESET_B)) = (0: 0: 0); // delay is tris
(negedge RESET_B => (Q_N -: RESET_B)) = (0: 0: 0); // delay is tris
(posedge CLK => (Q : CLK)) = (0: 0: 0, 0: 0: 0); // delays are tris,tfall
(posedge CLK => (Q_N : CLK)) = (0: 0: 0, 0: 0: 0); // delays are tris,tfall
$width(posedge CLK &&& (RESET_B === 1'b1), 0: 0: 0, 0, notifier);
$width(negedge CLK &&& (RESET_B === 1'b1), 0: 0: 0, 0, notifier);
$width(negedge RESET_B, 0: 0: 0, 0, notifier);
$recrem ( posedge RESET_B , posedge CLK , 0:0:0, 0:0:0, notifier , , , RESETB_delayed , CLK_delayed ) ;
$setuphold ( posedge CLK , posedge D , 0:0:0, 0:0:0, notifier , , COND0 , CLK_delayed , D_delayed ) ;
$setuphold ( posedge CLK , negedge D , 0:0:0, 0:0:0, notifier , , COND0 , CLK_delayed , D_delayed ) ;
endspecify
`endif
endmodule
| 7.212805 |
module sky130_fd_sc_hvl__dfrbp_1 (
Q,
Q_N,
CLK,
D,
RESET_B
);
output Q;
output Q_N;
input CLK;
input D;
input RESET_B;
// Voltage supply signals
supply1 VPWR;
supply0 VGND;
supply1 VPB;
supply0 VNB;
sky130_fd_sc_hvl__dfrbp base (
.Q(Q),
.Q_N(Q_N),
.CLK(CLK),
.D(D),
.RESET_B(RESET_B)
);
`ifdef FUNCTIONAL
/*
* Copyright 2020 The SkyWater PDK Authors
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
* SPDX-License-Identifier: Apache-2.0
*/
wire RESETB_delayed, CLK_delayed, D_delayed, COND0;
reg notifier;
specify
(negedge RESET_B => (Q +: RESET_B)) = (0: 0: 0); // delay is tris
(negedge RESET_B => (Q_N -: RESET_B)) = (0: 0: 0); // delay is tris
(posedge CLK => (Q : CLK)) = (0: 0: 0, 0: 0: 0); // delays are tris,tfall
(posedge CLK => (Q_N : CLK)) = (0: 0: 0, 0: 0: 0); // delays are tris,tfall
$width(posedge CLK &&& (RESET_B === 1'b1), 0: 0: 0, 0, notifier);
$width(negedge CLK &&& (RESET_B === 1'b1), 0: 0: 0, 0, notifier);
$width(negedge RESET_B, 0: 0: 0, 0, notifier);
$recrem ( posedge RESET_B , posedge CLK , 0:0:0, 0:0:0, notifier , , , RESETB_delayed , CLK_delayed ) ;
$setuphold ( posedge CLK , posedge D , 0:0:0, 0:0:0, notifier , , COND0 , CLK_delayed , D_delayed ) ;
$setuphold ( posedge CLK , negedge D , 0:0:0, 0:0:0, notifier , , COND0 , CLK_delayed , D_delayed ) ;
endspecify
`endif
endmodule
| 7.212805 |
module sky130_fd_sc_hvl__dfrtp (
Q,
CLK,
D,
RESET_B,
VPWR,
VGND,
VPB,
VNB
);
// Module ports
output Q;
input CLK;
input D;
input RESET_B;
input VPWR;
input VGND;
input VPB;
input VNB;
// Local signals
wire buf_Q;
wire RESET;
reg notifier;
wire cond0;
wire D_delayed;
wire RESET_B_delayed;
wire CLK_delayed;
wire buf0_out_Q;
// Name Output Other arguments
not not0 (RESET, RESET_B_delayed);
sky130_fd_sc_hvl__udp_dff$PR_pp$PG$N dff0 (
buf_Q,
D_delayed,
CLK_delayed,
RESET,
notifier,
VPWR,
VGND
);
assign cond0 = (RESET_B_delayed === 1'b1);
buf buf0 (buf0_out_Q, buf_Q);
sky130_fd_sc_hvl__udp_pwrgood_pp$PG pwrgood_pp0 (
Q,
buf0_out_Q,
VPWR,
VGND
);
endmodule
| 7.212805 |
module sky130_fd_sc_hvl__dfrtp (
Q ,
CLK ,
D ,
RESET_B
);
// Module ports
output Q ;
input CLK ;
input D ;
input RESET_B;
// Local signals
wire buf_Q;
wire RESET;
// Delay Name Output Other arguments
not not0 (RESET , RESET_B );
sky130_fd_sc_hvl__udp_dff$PR `UNIT_DELAY dff0 (buf_Q , D, CLK, RESET );
buf buf0 (Q , buf_Q );
endmodule
| 7.212805 |
module sky130_fd_sc_hvl__dfrtp (
Q,
CLK,
D,
RESET_B
);
// Module ports
output Q;
input CLK;
input D;
input RESET_B;
// Module supplies
supply1 VPWR;
supply0 VGND;
supply1 VPB;
supply0 VNB;
// Local signals
wire buf_Q;
wire RESET;
reg notifier;
wire cond0;
wire D_delayed;
wire RESET_B_delayed;
wire CLK_delayed;
// Name Output Other arguments
not not0 (RESET, RESET_B_delayed);
sky130_fd_sc_hvl__udp_dff$PR_pp$PG$N dff0 (
buf_Q,
D_delayed,
CLK_delayed,
RESET,
notifier,
VPWR,
VGND
);
assign cond0 = (RESET_B_delayed === 1'b1);
buf buf0 (Q, buf_Q);
endmodule
| 7.212805 |
module sky130_fd_sc_hvl__dfrtp_1 (
Q,
CLK,
D,
RESET_B,
VPWR,
VGND,
VPB,
VNB
);
output Q;
input CLK;
input D;
input RESET_B;
input VPWR;
input VGND;
input VPB;
input VNB;
sky130_fd_sc_hvl__dfrtp base (
.Q(Q),
.CLK(CLK),
.D(D),
.RESET_B(RESET_B),
.VPWR(VPWR),
.VGND(VGND),
.VPB(VPB),
.VNB(VNB)
);
`ifdef FUNCTIONAL
/*
* Copyright 2020 The SkyWater PDK Authors
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
* SPDX-License-Identifier: Apache-2.0
*/
wire RESETB_delayed, CLK_delayed, D_delayed, COND0;
reg notifier;
specify
(negedge RESET_B => (Q +: RESET_B)) = (0: 0: 0); // delay is tris
(posedge CLK => (Q : CLK)) = (0: 0: 0, 0: 0: 0); // delays are tris,tfall
$width(posedge CLK &&& (RESET_B === 1'b1), 0: 0: 0, 0, notifier);
$width(negedge CLK &&& (RESET_B === 1'b1), 0: 0: 0, 0, notifier);
$width(negedge RESET_B, 0: 0: 0, 0, notifier);
$recrem ( posedge RESET_B , posedge CLK , 0:0:0, 0:0:0, notifier , , , RESETB_delayed , CLK_delayed ) ;
$setuphold ( posedge CLK , posedge D , 0:0:0, 0:0:0, notifier , , COND0 , CLK_delayed , D_delayed ) ;
$setuphold ( posedge CLK , negedge D , 0:0:0, 0:0:0, notifier , , COND0 , CLK_delayed , D_delayed ) ;
endspecify
`endif
endmodule
| 7.212805 |
module sky130_fd_sc_hvl__dfrtp_1 (
Q,
CLK,
D,
RESET_B
);
output Q;
input CLK;
input D;
input RESET_B;
// Voltage supply signals
supply1 VPWR;
supply0 VGND;
supply1 VPB;
supply0 VNB;
sky130_fd_sc_hvl__dfrtp base (
.Q(Q),
.CLK(CLK),
.D(D),
.RESET_B(RESET_B)
);
`ifdef FUNCTIONAL
/*
* Copyright 2020 The SkyWater PDK Authors
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
* SPDX-License-Identifier: Apache-2.0
*/
wire RESETB_delayed, CLK_delayed, D_delayed, COND0;
reg notifier;
specify
(negedge RESET_B => (Q +: RESET_B)) = (0: 0: 0); // delay is tris
(posedge CLK => (Q : CLK)) = (0: 0: 0, 0: 0: 0); // delays are tris,tfall
$width(posedge CLK &&& (RESET_B === 1'b1), 0: 0: 0, 0, notifier);
$width(negedge CLK &&& (RESET_B === 1'b1), 0: 0: 0, 0, notifier);
$width(negedge RESET_B, 0: 0: 0, 0, notifier);
$recrem ( posedge RESET_B , posedge CLK , 0:0:0, 0:0:0, notifier , , , RESETB_delayed , CLK_delayed ) ;
$setuphold ( posedge CLK , posedge D , 0:0:0, 0:0:0, notifier , , COND0 , CLK_delayed , D_delayed ) ;
$setuphold ( posedge CLK , negedge D , 0:0:0, 0:0:0, notifier , , COND0 , CLK_delayed , D_delayed ) ;
endspecify
`endif
endmodule
| 7.212805 |
module sky130_fd_sc_hvl__dfsbp (
Q,
Q_N,
CLK,
D,
SET_B,
VPWR,
VGND,
VPB,
VNB
);
// Module ports
output Q;
output Q_N;
input CLK;
input D;
input SET_B;
input VPWR;
input VGND;
input VPB;
input VNB;
// Local signals
wire buf_Q;
wire SET;
reg notifier;
wire cond0;
wire D_delayed;
wire SET_B_delayed;
wire CLK_delayed;
wire buf0_out_Q;
wire not1_out_qn;
// Name Output Other arguments
not not0 (SET, SET_B_delayed);
sky130_fd_sc_hvl__udp_dff$PS_pp$PG$N dff0 (
buf_Q,
D_delayed,
CLK_delayed,
SET,
notifier,
VPWR,
VGND
);
assign cond0 = (SET_B_delayed === 1'b1);
buf buf0 (buf0_out_Q, buf_Q);
sky130_fd_sc_hvl__udp_pwrgood_pp$PG pwrgood_pp0 (
Q,
buf0_out_Q,
VPWR,
VGND
);
not not1 (not1_out_qn, buf_Q);
sky130_fd_sc_hvl__udp_pwrgood_pp$PG pwrgood_pp1 (
Q_N,
not1_out_qn,
VPWR,
VGND
);
endmodule
| 7.212805 |
module sky130_fd_sc_hvl__dfsbp (
Q ,
Q_N ,
CLK ,
D ,
SET_B
);
// Module ports
output Q ;
output Q_N ;
input CLK ;
input D ;
input SET_B;
// Local signals
wire buf_Q;
wire SET ;
// Delay Name Output Other arguments
not not0 (SET , SET_B );
sky130_fd_sc_hvl__udp_dff$PS `UNIT_DELAY dff0 (buf_Q , D, CLK, SET );
buf buf0 (Q , buf_Q );
not not1 (Q_N , buf_Q );
endmodule
| 7.212805 |
module sky130_fd_sc_hvl__dfsbp (
Q,
Q_N,
CLK,
D,
SET_B
);
// Module ports
output Q;
output Q_N;
input CLK;
input D;
input SET_B;
// Module supplies
supply1 VPWR;
supply0 VGND;
supply1 VPB;
supply0 VNB;
// Local signals
wire buf_Q;
wire SET;
reg notifier;
wire cond0;
wire D_delayed;
wire SET_B_delayed;
wire CLK_delayed;
// Name Output Other arguments
not not0 (SET, SET_B_delayed);
sky130_fd_sc_hvl__udp_dff$PS_pp$PG$N dff0 (
buf_Q,
D_delayed,
CLK_delayed,
SET,
notifier,
VPWR,
VGND
);
assign cond0 = (SET_B_delayed === 1'b1);
buf buf0 (Q, buf_Q);
not not1 (Q_N, buf_Q);
endmodule
| 7.212805 |
module sky130_fd_sc_hvl__dfsbp_1 (
Q,
Q_N,
CLK,
D,
SET_B,
VPWR,
VGND,
VPB,
VNB
);
output Q;
output Q_N;
input CLK;
input D;
input SET_B;
input VPWR;
input VGND;
input VPB;
input VNB;
sky130_fd_sc_hvl__dfsbp base (
.Q(Q),
.Q_N(Q_N),
.CLK(CLK),
.D(D),
.SET_B(SET_B),
.VPWR(VPWR),
.VGND(VGND),
.VPB(VPB),
.VNB(VNB)
);
`ifdef FUNCTIONAL
/*
* Copyright 2020 The SkyWater PDK Authors
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
* SPDX-License-Identifier: Apache-2.0
*/
wire SETB_delayed, CLK_delayed, D_delayed, COND0;
reg notifier;
specify
(negedge SET_B => (Q -: SET_B)) = (0: 0: 0); // delay is tris
(negedge SET_B => (Q_N +: SET_B)) = (0: 0: 0); // delay is tris
(posedge CLK => (Q : CLK)) = (0: 0: 0, 0: 0: 0); // delays are tris,tfall
(posedge CLK => (Q_N : CLK)) = (0: 0: 0, 0: 0: 0); // delays are tris,tfall
$width(posedge CLK &&& (SET_B === 1'b1), 0: 0: 0, 0, notifier);
$width(negedge CLK &&& (SET_B === 1'b1), 0: 0: 0, 0, notifier);
$width(negedge SET_B, 0: 0: 0, 0, notifier);
$recrem ( posedge SET_B , posedge CLK , 0:0:0, 0:0:0, notifier , , , SETB_delayed , CLK_delayed ) ;
$setuphold ( posedge CLK , posedge D , 0:0:0, 0:0:0, notifier , , COND0 , CLK_delayed , D_delayed ) ;
$setuphold ( posedge CLK , negedge D , 0:0:0, 0:0:0, notifier , , COND0 , CLK_delayed , D_delayed ) ;
endspecify
`endif
endmodule
| 7.212805 |
module sky130_fd_sc_hvl__dfsbp_1 (
Q,
Q_N,
CLK,
D,
SET_B
);
output Q;
output Q_N;
input CLK;
input D;
input SET_B;
// Voltage supply signals
supply1 VPWR;
supply0 VGND;
supply1 VPB;
supply0 VNB;
sky130_fd_sc_hvl__dfsbp base (
.Q(Q),
.Q_N(Q_N),
.CLK(CLK),
.D(D),
.SET_B(SET_B)
);
`ifdef FUNCTIONAL
/*
* Copyright 2020 The SkyWater PDK Authors
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
* SPDX-License-Identifier: Apache-2.0
*/
wire SETB_delayed, CLK_delayed, D_delayed, COND0;
reg notifier;
specify
(negedge SET_B => (Q -: SET_B)) = (0: 0: 0); // delay is tris
(negedge SET_B => (Q_N +: SET_B)) = (0: 0: 0); // delay is tris
(posedge CLK => (Q : CLK)) = (0: 0: 0, 0: 0: 0); // delays are tris,tfall
(posedge CLK => (Q_N : CLK)) = (0: 0: 0, 0: 0: 0); // delays are tris,tfall
$width(posedge CLK &&& (SET_B === 1'b1), 0: 0: 0, 0, notifier);
$width(negedge CLK &&& (SET_B === 1'b1), 0: 0: 0, 0, notifier);
$width(negedge SET_B, 0: 0: 0, 0, notifier);
$recrem ( posedge SET_B , posedge CLK , 0:0:0, 0:0:0, notifier , , , SETB_delayed , CLK_delayed ) ;
$setuphold ( posedge CLK , posedge D , 0:0:0, 0:0:0, notifier , , COND0 , CLK_delayed , D_delayed ) ;
$setuphold ( posedge CLK , negedge D , 0:0:0, 0:0:0, notifier , , COND0 , CLK_delayed , D_delayed ) ;
endspecify
`endif
endmodule
| 7.212805 |
module sky130_fd_sc_hvl__dfstp (
Q,
CLK,
D,
SET_B,
VPWR,
VGND,
VPB,
VNB
);
// Module ports
output Q;
input CLK;
input D;
input SET_B;
input VPWR;
input VGND;
input VPB;
input VNB;
// Local signals
wire buf_Q;
wire SET;
reg notifier;
wire cond0;
wire D_delayed;
wire SET_B_delayed;
wire CLK_delayed;
wire buf0_out_Q;
// Name Output Other arguments
not not0 (SET, SET_B_delayed);
sky130_fd_sc_hvl__udp_dff$PS_pp$PG$N dff0 (
buf_Q,
D_delayed,
CLK_delayed,
SET,
notifier,
VPWR,
VGND
);
assign cond0 = (SET_B_delayed === 1'b1);
buf buf0 (buf0_out_Q, buf_Q);
sky130_fd_sc_hvl__udp_pwrgood_pp$PG pwrgood_pp0 (
Q,
buf0_out_Q,
VPWR,
VGND
);
endmodule
| 7.212805 |
module sky130_fd_sc_hvl__dfstp (
Q ,
CLK ,
D ,
SET_B
);
// Module ports
output Q ;
input CLK ;
input D ;
input SET_B;
// Local signals
wire buf_Q;
wire SET ;
// Delay Name Output Other arguments
not not0 (SET , SET_B );
sky130_fd_sc_hvl__udp_dff$PS `UNIT_DELAY dff0 (buf_Q , D, CLK, SET );
buf buf0 (Q , buf_Q );
endmodule
| 7.212805 |
module sky130_fd_sc_hvl__dfstp (
Q,
CLK,
D,
SET_B
);
// Module ports
output Q;
input CLK;
input D;
input SET_B;
// Module supplies
supply1 VPWR;
supply0 VGND;
supply1 VPB;
supply0 VNB;
// Local signals
wire buf_Q;
wire SET;
reg notifier;
wire cond0;
wire D_delayed;
wire SET_B_delayed;
wire CLK_delayed;
// Name Output Other arguments
not not0 (SET, SET_B_delayed);
sky130_fd_sc_hvl__udp_dff$PS_pp$PG$N dff0 (
buf_Q,
D_delayed,
CLK_delayed,
SET,
notifier,
VPWR,
VGND
);
assign cond0 = (SET_B_delayed === 1'b1);
buf buf0 (Q, buf_Q);
endmodule
| 7.212805 |
module sky130_fd_sc_hvl__dfstp_1 (
Q,
CLK,
D,
SET_B,
VPWR,
VGND,
VPB,
VNB
);
output Q;
input CLK;
input D;
input SET_B;
input VPWR;
input VGND;
input VPB;
input VNB;
sky130_fd_sc_hvl__dfstp base (
.Q(Q),
.CLK(CLK),
.D(D),
.SET_B(SET_B),
.VPWR(VPWR),
.VGND(VGND),
.VPB(VPB),
.VNB(VNB)
);
`ifdef FUNCTIONAL
/*
* Copyright 2020 The SkyWater PDK Authors
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
* SPDX-License-Identifier: Apache-2.0
*/
wire SETB_delayed, CLK_delayed, D_delayed, COND0;
reg notifier;
specify
(negedge SET_B => (Q -: SET_B)) = (0: 0: 0); // delay is tris
(posedge CLK => (Q : CLK)) = (0: 0: 0, 0: 0: 0); // delays are tris,tfall
$width(posedge CLK &&& (SET_B === 1'b1), 0: 0: 0, 0, notifier);
$width(negedge CLK &&& (SET_B === 1'b1), 0: 0: 0, 0, notifier);
$width(negedge SET_B, 0: 0: 0, 0, notifier);
$recrem ( posedge SET_B , posedge CLK , 0:0:0, 0:0:0, notifier , , , SETB_delayed , CLK_delayed ) ;
$setuphold ( posedge CLK , posedge D , 0:0:0, 0:0:0, notifier , , COND0 , CLK_delayed , D_delayed ) ;
$setuphold ( posedge CLK , negedge D , 0:0:0, 0:0:0, notifier , , COND0 , CLK_delayed , D_delayed ) ;
endspecify
`endif
endmodule
| 7.212805 |
module sky130_fd_sc_hvl__dfstp_1 (
Q,
CLK,
D,
SET_B
);
output Q;
input CLK;
input D;
input SET_B;
// Voltage supply signals
supply1 VPWR;
supply0 VGND;
supply1 VPB;
supply0 VNB;
sky130_fd_sc_hvl__dfstp base (
.Q(Q),
.CLK(CLK),
.D(D),
.SET_B(SET_B)
);
`ifdef FUNCTIONAL
/*
* Copyright 2020 The SkyWater PDK Authors
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
* SPDX-License-Identifier: Apache-2.0
*/
wire SETB_delayed, CLK_delayed, D_delayed, COND0;
reg notifier;
specify
(negedge SET_B => (Q -: SET_B)) = (0: 0: 0); // delay is tris
(posedge CLK => (Q : CLK)) = (0: 0: 0, 0: 0: 0); // delays are tris,tfall
$width(posedge CLK &&& (SET_B === 1'b1), 0: 0: 0, 0, notifier);
$width(negedge CLK &&& (SET_B === 1'b1), 0: 0: 0, 0, notifier);
$width(negedge SET_B, 0: 0: 0, 0, notifier);
$recrem ( posedge SET_B , posedge CLK , 0:0:0, 0:0:0, notifier , , , SETB_delayed , CLK_delayed ) ;
$setuphold ( posedge CLK , posedge D , 0:0:0, 0:0:0, notifier , , COND0 , CLK_delayed , D_delayed ) ;
$setuphold ( posedge CLK , negedge D , 0:0:0, 0:0:0, notifier , , COND0 , CLK_delayed , D_delayed ) ;
endspecify
`endif
endmodule
| 7.212805 |
module sky130_fd_sc_hvl__dfxbp (
Q,
Q_N,
CLK,
D,
VPWR,
VGND,
VPB,
VNB
);
// Module ports
output Q;
output Q_N;
input CLK;
input D;
input VPWR;
input VGND;
input VPB;
input VNB;
// Local signals
wire buf_Q;
reg notifier;
wire D_delayed;
wire CLK_delayed;
wire buf0_out_Q;
wire not0_out_qn;
// Name Output Other arguments
sky130_fd_sc_hvl__udp_dff$P_pp$PG$N dff0 (
buf_Q,
D_delayed,
CLK_delayed,
notifier,
VPWR,
VGND
);
buf buf0 (buf0_out_Q, buf_Q);
sky130_fd_sc_hvl__udp_pwrgood_pp$PG pwrgood_pp0 (
Q,
buf0_out_Q,
VPWR,
VGND
);
not not0 (not0_out_qn, buf_Q);
sky130_fd_sc_hvl__udp_pwrgood_pp$PG pwrgood_pp1 (
Q_N,
not0_out_qn,
VPWR,
VGND
);
endmodule
| 7.212805 |
module sky130_fd_sc_hvl__dfxbp (
Q ,
Q_N,
CLK,
D
);
// Module ports
output Q ;
output Q_N;
input CLK;
input D ;
// Local signals
wire buf_Q;
// Delay Name Output Other arguments
sky130_fd_sc_hvl__udp_dff$P `UNIT_DELAY dff0 (buf_Q , D, CLK );
buf buf0 (Q , buf_Q );
not not0 (Q_N , buf_Q );
endmodule
| 7.212805 |
module sky130_fd_sc_hvl__dfxbp (
Q,
Q_N,
CLK,
D
);
// Module ports
output Q;
output Q_N;
input CLK;
input D;
// Module supplies
supply1 VPWR;
supply0 VGND;
supply1 VPB;
supply0 VNB;
// Local signals
wire buf_Q;
reg notifier;
wire D_delayed;
wire CLK_delayed;
// Name Output Other arguments
sky130_fd_sc_hvl__udp_dff$P_pp$PG$N dff0 (
buf_Q,
D_delayed,
CLK_delayed,
notifier,
VPWR,
VGND
);
buf buf0 (Q, buf_Q);
not not0 (Q_N, buf_Q);
endmodule
| 7.212805 |
module sky130_fd_sc_hvl__dfxbp_1 (
Q,
Q_N,
CLK,
D,
VPWR,
VGND,
VPB,
VNB
);
output Q;
output Q_N;
input CLK;
input D;
input VPWR;
input VGND;
input VPB;
input VNB;
sky130_fd_sc_hvl__dfxbp base (
.Q(Q),
.Q_N(Q_N),
.CLK(CLK),
.D(D),
.VPWR(VPWR),
.VGND(VGND),
.VPB(VPB),
.VNB(VNB)
);
`ifdef FUNCTIONAL
/*
* Copyright 2020 The SkyWater PDK Authors
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
* SPDX-License-Identifier: Apache-2.0
*/
wire SETB_delayed, CLK_delayed, D_delayed, COND0;
reg notifier;
specify
(posedge CLK => (Q : CLK)) = (0: 0: 0, 0: 0: 0); // delays are tris,tfall
(posedge CLK => (Q_N : CLK)) = (0: 0: 0, 0: 0: 0); // delays are tris,tfall
$width(posedge CLK, 0: 0: 0, 0, notifier);
$width(negedge CLK, 0: 0: 0, 0, notifier);
$setuphold(posedge CLK, posedge D, 0: 0: 0, 0: 0: 0, notifier,,, CLK_delayed, D_delayed);
$setuphold(posedge CLK, negedge D, 0: 0: 0, 0: 0: 0, notifier,,, CLK_delayed, D_delayed);
endspecify
`endif
endmodule
| 7.212805 |
module sky130_fd_sc_hvl__dfxbp_1 (
Q,
Q_N,
CLK,
D
);
output Q;
output Q_N;
input CLK;
input D;
// Voltage supply signals
supply1 VPWR;
supply0 VGND;
supply1 VPB;
supply0 VNB;
sky130_fd_sc_hvl__dfxbp base (
.Q (Q),
.Q_N(Q_N),
.CLK(CLK),
.D (D)
);
`ifdef FUNCTIONAL
/*
* Copyright 2020 The SkyWater PDK Authors
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
* SPDX-License-Identifier: Apache-2.0
*/
wire SETB_delayed, CLK_delayed, D_delayed, COND0;
reg notifier;
specify
(posedge CLK => (Q : CLK)) = (0: 0: 0, 0: 0: 0); // delays are tris,tfall
(posedge CLK => (Q_N : CLK)) = (0: 0: 0, 0: 0: 0); // delays are tris,tfall
$width(posedge CLK, 0: 0: 0, 0, notifier);
$width(negedge CLK, 0: 0: 0, 0, notifier);
$setuphold(posedge CLK, posedge D, 0: 0: 0, 0: 0: 0, notifier,,, CLK_delayed, D_delayed);
$setuphold(posedge CLK, negedge D, 0: 0: 0, 0: 0: 0, notifier,,, CLK_delayed, D_delayed);
endspecify
`endif
endmodule
| 7.212805 |
module sky130_fd_sc_hvl__dfxtp (
Q,
CLK,
D,
VPWR,
VGND,
VPB,
VNB
);
// Module ports
output Q;
input CLK;
input D;
input VPWR;
input VGND;
input VPB;
input VNB;
// Local signals
wire buf_Q;
reg notifier;
wire D_delayed;
wire CLK_delayed;
wire buf0_out_Q;
// Name Output Other arguments
sky130_fd_sc_hvl__udp_dff$P_pp$PG$N dff0 (
buf_Q,
D_delayed,
CLK_delayed,
notifier,
VPWR,
VGND
);
buf buf0 (buf0_out_Q, buf_Q);
sky130_fd_sc_hvl__udp_pwrgood_pp$PG pwrgood_pp0 (
Q,
buf0_out_Q,
VPWR,
VGND
);
endmodule
| 7.212805 |
module sky130_fd_sc_hvl__dfxtp (
Q ,
CLK,
D
);
// Module ports
output Q ;
input CLK;
input D ;
// Local signals
wire buf_Q;
// Delay Name Output Other arguments
sky130_fd_sc_hvl__udp_dff$P `UNIT_DELAY dff0 (buf_Q , D, CLK );
buf buf0 (Q , buf_Q );
endmodule
| 7.212805 |
module sky130_fd_sc_hvl__dfxtp (
Q,
CLK,
D
);
// Module ports
output Q;
input CLK;
input D;
// Module supplies
supply1 VPWR;
supply0 VGND;
supply1 VPB;
supply0 VNB;
// Local signals
wire buf_Q;
reg notifier;
wire D_delayed;
wire CLK_delayed;
// Name Output Other arguments
sky130_fd_sc_hvl__udp_dff$P_pp$PG$N dff0 (
buf_Q,
D_delayed,
CLK_delayed,
notifier,
VPWR,
VGND
);
buf buf0 (Q, buf_Q);
endmodule
| 7.212805 |
module sky130_fd_sc_hvl__dfxtp_1 (
Q,
CLK,
D,
VPWR,
VGND,
VPB,
VNB
);
output Q;
input CLK;
input D;
input VPWR;
input VGND;
input VPB;
input VNB;
sky130_fd_sc_hvl__dfxtp base (
.Q(Q),
.CLK(CLK),
.D(D),
.VPWR(VPWR),
.VGND(VGND),
.VPB(VPB),
.VNB(VNB)
);
`ifdef FUNCTIONAL
/*
* Copyright 2020 The SkyWater PDK Authors
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
* SPDX-License-Identifier: Apache-2.0
*/
wire SETB_delayed, CLK_delayed, D_delayed, COND0;
reg notifier;
specify
(posedge CLK => (Q : CLK)) = (0: 0: 0, 0: 0: 0); // delays are tris,tfall
$width(posedge CLK, 0: 0: 0, 0, notifier);
$width(negedge CLK, 0: 0: 0, 0, notifier);
$setuphold(posedge CLK, posedge D, 0: 0: 0, 0: 0: 0, notifier,,, CLK_delayed, D_delayed);
$setuphold(posedge CLK, negedge D, 0: 0: 0, 0: 0: 0, notifier,,, CLK_delayed, D_delayed);
endspecify
`endif
endmodule
| 7.212805 |
module sky130_fd_sc_hvl__dfxtp_1 (
Q,
CLK,
D
);
output Q;
input CLK;
input D;
// Voltage supply signals
supply1 VPWR;
supply0 VGND;
supply1 VPB;
supply0 VNB;
sky130_fd_sc_hvl__dfxtp base (
.Q (Q),
.CLK(CLK),
.D (D)
);
`ifdef FUNCTIONAL
/*
* Copyright 2020 The SkyWater PDK Authors
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
* SPDX-License-Identifier: Apache-2.0
*/
wire SETB_delayed, CLK_delayed, D_delayed, COND0;
reg notifier;
specify
(posedge CLK => (Q : CLK)) = (0: 0: 0, 0: 0: 0); // delays are tris,tfall
$width(posedge CLK, 0: 0: 0, 0, notifier);
$width(negedge CLK, 0: 0: 0, 0, notifier);
$setuphold(posedge CLK, posedge D, 0: 0: 0, 0: 0: 0, notifier,,, CLK_delayed, D_delayed);
$setuphold(posedge CLK, negedge D, 0: 0: 0, 0: 0: 0, notifier,,, CLK_delayed, D_delayed);
endspecify
`endif
endmodule
| 7.212805 |
module sky130_fd_sc_hvl__diode (
DIODE,
VPWR,
VGND,
VPB,
VNB
);
// Module ports
input DIODE;
input VPWR;
input VGND;
input VPB;
input VNB;
// No contents.
endmodule
| 7.212805 |
module sky130_fd_sc_hvl__diode (
DIODE
);
// Module ports
input DIODE;
// No contents.
endmodule
| 7.212805 |
module sky130_fd_sc_hvl__diode (
DIODE
);
// Module ports
input DIODE;
// Module supplies
supply1 VPWR;
supply0 VGND;
supply1 VPB;
supply0 VNB;
// No contents.
endmodule
| 7.212805 |
module sky130_fd_sc_hvl__diode_2 (
DIODE,
VPWR,
VGND,
VPB,
VNB
);
input DIODE;
input VPWR;
input VGND;
input VPB;
input VNB;
sky130_fd_sc_hvl__diode base (
.DIODE(DIODE),
.VPWR (VPWR),
.VGND (VGND),
.VPB (VPB),
.VNB (VNB)
);
endmodule
| 7.212805 |
module sky130_fd_sc_hvl__diode_2 (
DIODE
);
input DIODE;
// Voltage supply signals
supply1 VPWR;
supply0 VGND;
supply1 VPB;
supply0 VNB;
sky130_fd_sc_hvl__diode base (.DIODE(DIODE));
endmodule
| 7.212805 |
module sky130_fd_sc_hvl__dlclkp (
GCLK,
GATE,
CLK,
VPWR,
VGND,
VPB,
VNB
);
// Module ports
output GCLK;
input GATE;
input CLK;
input VPWR;
input VGND;
input VPB;
input VNB;
// Local signals
wire m0;
wire clkn;
wire CLK_delayed;
wire GATE_delayed;
reg notifier;
wire GCLK_b;
wire awake;
// Name Output Other arguments
not not0 (clkn, CLK_delayed);
sky130_fd_sc_hvl__udp_dlatch$P_pp$PG$N dlatch0 (
m0,
GATE_delayed,
clkn,
notifier,
VPWR,
VGND
);
and and0 (GCLK_b, m0, CLK_delayed);
sky130_fd_sc_hvl__udp_pwrgood_pp$PG pwrgood_pp0 (
GCLK,
GCLK_b,
VPWR,
VGND
);
assign awake = (VPWR === 1'b1);
endmodule
| 7.212805 |
module sky130_fd_sc_hvl__dlclkp (
GCLK,
GATE,
CLK
);
// Module ports
output GCLK;
input GATE;
input CLK;
// Local signals
wire m0;
wire clkn;
// Name Output Other arguments
not not0 (clkn, CLK);
sky130_fd_sc_hvl__udp_dlatch$P dlatch0 (
m0,
GATE,
clkn
);
and and0 (GCLK, m0, CLK);
endmodule
| 7.212805 |
module sky130_fd_sc_hvl__dlclkp (
GCLK,
GATE,
CLK
);
// Module ports
output GCLK;
input GATE;
input CLK;
// Module supplies
supply1 VPWR;
supply0 VGND;
supply1 VPB;
supply0 VNB;
// Local signals
wire m0;
wire clkn;
wire CLK_delayed;
wire GATE_delayed;
reg notifier;
wire GCLK_b;
wire awake;
// Name Output Other arguments
not not0 (clkn, CLK_delayed);
sky130_fd_sc_hvl__udp_dlatch$P_pp$PG$N dlatch0 (
m0,
GATE_delayed,
clkn,
notifier,
VPWR,
VGND
);
and and0 (GCLK_b, m0, CLK_delayed);
sky130_fd_sc_hvl__udp_pwrgood_pp$PG pwrgood_pp0 (
GCLK,
GCLK_b,
VPWR,
VGND
);
assign awake = (VPWR === 1'b1);
endmodule
| 7.212805 |
module sky130_fd_sc_hvl__dlclkp_1 (
GCLK,
GATE,
CLK,
VPWR,
VGND,
VPB,
VNB
);
output GCLK;
input GATE;
input CLK;
input VPWR;
input VGND;
input VPB;
input VNB;
sky130_fd_sc_hvl__dlclkp base (
.GCLK(GCLK),
.GATE(GATE),
.CLK (CLK),
.VPWR(VPWR),
.VGND(VGND),
.VPB (VPB),
.VNB (VNB)
);
`ifdef FUNCTIONAL
/*
* Copyright 2020 The SkyWater PDK Authors
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
* SPDX-License-Identifier: Apache-2.0
*/
wire SETB_delayed, CLK_delayed, GATE_delayed, AWAKE;
reg notifier;
specify
(CLK + => GCLK) = (0: 0: 0, 0: 0: 0); // delays are tris , tfall
$width(negedge CLK &&& AWAKE, 1.0: 1.0: 1.0, 0, notifier);
$setuphold ( posedge CLK , posedge GATE , 0:0:0 , 0:0:0 , notifier , AWAKE , AWAKE , CLK_delayed , GATE_delayed ) ;
$setuphold ( posedge CLK , negedge GATE , 0:0:0 , 0:0:0 , notifier , AWAKE , AWAKE , CLK_delayed , GATE_delayed ) ;
endspecify
`endif
endmodule
| 7.212805 |
module sky130_fd_sc_hvl__dlclkp_1 (
GCLK,
GATE,
CLK
);
output GCLK;
input GATE;
input CLK;
// Voltage supply signals
supply1 VPWR;
supply0 VGND;
supply1 VPB;
supply0 VNB;
sky130_fd_sc_hvl__dlclkp base (
.GCLK(GCLK),
.GATE(GATE),
.CLK (CLK)
);
`ifdef FUNCTIONAL
/*
* Copyright 2020 The SkyWater PDK Authors
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
* SPDX-License-Identifier: Apache-2.0
*/
wire SETB_delayed, CLK_delayed, GATE_delayed, AWAKE;
reg notifier;
specify
(CLK + => GCLK) = (0: 0: 0, 0: 0: 0); // delays are tris , tfall
$width(negedge CLK &&& AWAKE, 1.0: 1.0: 1.0, 0, notifier);
$setuphold ( posedge CLK , posedge GATE , 0:0:0 , 0:0:0 , notifier , AWAKE , AWAKE , CLK_delayed , GATE_delayed ) ;
$setuphold ( posedge CLK , negedge GATE , 0:0:0 , 0:0:0 , notifier , AWAKE , AWAKE , CLK_delayed , GATE_delayed ) ;
endspecify
`endif
endmodule
| 7.212805 |
module sky130_fd_sc_hvl__dlrtp (
Q,
RESET_B,
D,
GATE,
VPWR,
VGND,
VPB,
VNB
);
// Module ports
output Q;
input RESET_B;
input D;
input GATE;
input VPWR;
input VGND;
input VPB;
input VNB;
// Local signals
wire RESET;
reg notifier;
wire cond0;
wire D_delayed;
wire GATE_delayed;
wire RESET_delayed;
wire RESET_B_delayed;
wire buf_Q;
wire buf0_out_Q;
// Name Output Other arguments
not not0 (RESET, RESET_B_delayed);
sky130_fd_sc_hvl__udp_dlatch$PR_pp$PG$N dlatch0 (
buf_Q,
D_delayed,
GATE_delayed,
RESET,
notifier,
VPWR,
VGND
);
assign cond0 = (RESET_B_delayed === 1'b1);
buf buf0 (buf0_out_Q, buf_Q);
sky130_fd_sc_hvl__udp_pwrgood_pp$PG pwrgood_pp0 (
Q,
buf0_out_Q,
VPWR,
VGND
);
endmodule
| 7.212805 |
module sky130_fd_sc_hvl__dlrtp (
Q ,
RESET_B,
D ,
GATE
);
// Module ports
output Q ;
input RESET_B;
input D ;
input GATE ;
// Local signals
wire RESET;
wire buf_Q;
// Delay Name Output Other arguments
not not0 (RESET , RESET_B );
sky130_fd_sc_hvl__udp_dlatch$PR `UNIT_DELAY dlatch0 (buf_Q , D, GATE, RESET );
buf buf0 (Q , buf_Q );
endmodule
| 7.212805 |
module sky130_fd_sc_hvl__dlrtp (
Q,
RESET_B,
D,
GATE
);
// Module ports
output Q;
input RESET_B;
input D;
input GATE;
// Module supplies
supply1 VPWR;
supply0 VGND;
supply1 VPB;
supply0 VNB;
// Local signals
wire RESET;
reg notifier;
wire cond0;
wire D_delayed;
wire GATE_delayed;
wire RESET_delayed;
wire RESET_B_delayed;
wire buf_Q;
// Name Output Other arguments
not not0 (RESET, RESET_B_delayed);
sky130_fd_sc_hvl__udp_dlatch$PR_pp$PG$N dlatch0 (
buf_Q,
D_delayed,
GATE_delayed,
RESET,
notifier,
VPWR,
VGND
);
assign cond0 = (RESET_B_delayed === 1'b1);
buf buf0 (Q, buf_Q);
endmodule
| 7.212805 |
module sky130_fd_sc_hvl__dlrtp_1 (
Q,
RESET_B,
D,
GATE,
VPWR,
VGND,
VPB,
VNB
);
output Q;
input RESET_B;
input D;
input GATE;
input VPWR;
input VGND;
input VPB;
input VNB;
sky130_fd_sc_hvl__dlrtp base (
.Q(Q),
.RESET_B(RESET_B),
.D(D),
.GATE(GATE),
.VPWR(VPWR),
.VGND(VGND),
.VPB(VPB),
.VNB(VNB)
);
`ifdef FUNCTIONAL
/*
* Copyright 2020 The SkyWater PDK Authors
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
* SPDX-License-Identifier: Apache-2.0
*/
wire SETB_delayed, CLK_delayed, GATE_delayed, D_delayed, COND0, RESETB_delayed, AWAKE;
reg notifier;
specify
(negedge RESET_B => (Q +: RESET_B)) = (0: 0: 0, 0: 0: 0); // delay is tfall
(D + => Q) = (0: 0: 0, 0: 0: 0); // delays are tris,tfall
(posedge GATE => (Q : GATE)) = (0: 0: 0, 0: 0: 0); // delays are tris,tfall
$width(posedge GATE &&& (RESET_B === 1'b1), 0: 0: 0, 0, notifier);
$width(negedge RESET_B, 0: 0: 0, 0, notifier);
$recrem ( posedge RESET_B , negedge GATE , 0:0:0, 0:0:0, notifier , , , RESETB_delayed , GATE_delayed ) ;
$setuphold ( negedge GATE , posedge D , 0:0:0, 0:0:0, notifier , , COND0 , GATE_delayed , D_delayed ) ;
$setuphold ( negedge GATE , negedge D , 0:0:0, 0:0:0, notifier , , COND0 , GATE_delayed , D_delayed ) ;
endspecify
`endif
endmodule
| 7.212805 |
module sky130_fd_sc_hvl__dlrtp_1 (
Q,
RESET_B,
D,
GATE
);
output Q;
input RESET_B;
input D;
input GATE;
// Voltage supply signals
supply1 VPWR;
supply0 VGND;
supply1 VPB;
supply0 VNB;
sky130_fd_sc_hvl__dlrtp base (
.Q(Q),
.RESET_B(RESET_B),
.D(D),
.GATE(GATE)
);
`ifdef FUNCTIONAL
/*
* Copyright 2020 The SkyWater PDK Authors
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
* SPDX-License-Identifier: Apache-2.0
*/
wire SETB_delayed, CLK_delayed, GATE_delayed, D_delayed, COND0, RESETB_delayed, AWAKE;
reg notifier;
specify
(negedge RESET_B => (Q +: RESET_B)) = (0: 0: 0, 0: 0: 0); // delay is tfall
(D + => Q) = (0: 0: 0, 0: 0: 0); // delays are tris,tfall
(posedge GATE => (Q : GATE)) = (0: 0: 0, 0: 0: 0); // delays are tris,tfall
$width(posedge GATE &&& (RESET_B === 1'b1), 0: 0: 0, 0, notifier);
$width(negedge RESET_B, 0: 0: 0, 0, notifier);
$recrem ( posedge RESET_B , negedge GATE , 0:0:0, 0:0:0, notifier , , , RESETB_delayed , GATE_delayed ) ;
$setuphold ( negedge GATE , posedge D , 0:0:0, 0:0:0, notifier , , COND0 , GATE_delayed , D_delayed ) ;
$setuphold ( negedge GATE , negedge D , 0:0:0, 0:0:0, notifier , , COND0 , GATE_delayed , D_delayed ) ;
endspecify
`endif
endmodule
| 7.212805 |
module sky130_fd_sc_hvl__dlxtp (
Q,
D,
GATE,
VPWR,
VGND,
VPB,
VNB
);
// Module ports
output Q;
input D;
input GATE;
input VPWR;
input VGND;
input VPB;
input VNB;
// Local signals
reg notifier;
wire buf_Q;
wire GATE_delayed;
wire D_delayed;
wire buf0_out_Q;
// Name Output Other arguments
sky130_fd_sc_hvl__udp_dlatch$P_pp$PG$N dlatch0 (
buf_Q,
D_delayed,
GATE_delayed,
notifier,
VPWR,
VGND
);
buf buf0 (buf0_out_Q, buf_Q);
sky130_fd_sc_hvl__udp_pwrgood_pp$PG pwrgood_pp0 (
Q,
buf0_out_Q,
VPWR,
VGND
);
endmodule
| 7.212805 |
module sky130_fd_sc_hvl__dlxtp (
Q ,
D ,
GATE
);
// Module ports
output Q ;
input D ;
input GATE;
// Local signals
wire buf_Q;
// Delay Name Output Other arguments
sky130_fd_sc_hvl__udp_dlatch$P `UNIT_DELAY dlatch0 (buf_Q , D, GATE );
buf buf0 (Q , buf_Q );
endmodule
| 7.212805 |
module sky130_fd_sc_hvl__dlxtp (
Q,
D,
GATE
);
// Module ports
output Q;
input D;
input GATE;
// Module supplies
supply1 VPWR;
supply0 VGND;
supply1 VPB;
supply0 VNB;
// Local signals
reg notifier;
wire buf_Q;
wire GATE_delayed;
wire D_delayed;
// Name Output Other arguments
sky130_fd_sc_hvl__udp_dlatch$P_pp$PG$N dlatch0 (
buf_Q,
D_delayed,
GATE_delayed,
notifier,
VPWR,
VGND
);
buf buf0 (Q, buf_Q);
endmodule
| 7.212805 |
module sky130_fd_sc_hvl__dlxtp_1 (
Q,
D,
GATE,
VPWR,
VGND,
VPB,
VNB
);
output Q;
input D;
input GATE;
input VPWR;
input VGND;
input VPB;
input VNB;
sky130_fd_sc_hvl__dlxtp base (
.Q(Q),
.D(D),
.GATE(GATE),
.VPWR(VPWR),
.VGND(VGND),
.VPB(VPB),
.VNB(VNB)
);
`ifdef FUNCTIONAL
/*
* Copyright 2020 The SkyWater PDK Authors
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
* SPDX-License-Identifier: Apache-2.0
*/
wire SETB_delayed, CLK_delayed, GATE_delayed, D_delayed, COND0, RESETB_delayed, AWAKE;
reg notifier;
specify
(D + => Q) = (0: 0: 0, 0: 0: 0); // delays are tris,tfall
(posedge GATE => (Q +: D)) = (0: 0: 0, 0: 0: 0); // delays are tris,tfall
$width(posedge GATE, 0: 0: 0, 0, notifier);
$setuphold(negedge GATE, posedge D, 0: 0: 0, 0: 0: 0, notifier,,, GATE_delayed, D_delayed);
$setuphold(negedge GATE, negedge D, 0: 0: 0, 0: 0: 0, notifier,,, GATE_delayed, D_delayed);
endspecify
`endif
endmodule
| 7.212805 |
module sky130_fd_sc_hvl__dlxtp_1 (
Q,
D,
GATE
);
output Q;
input D;
input GATE;
// Voltage supply signals
supply1 VPWR;
supply0 VGND;
supply1 VPB;
supply0 VNB;
sky130_fd_sc_hvl__dlxtp base (
.Q(Q),
.D(D),
.GATE(GATE)
);
`ifdef FUNCTIONAL
/*
* Copyright 2020 The SkyWater PDK Authors
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
* SPDX-License-Identifier: Apache-2.0
*/
wire SETB_delayed, CLK_delayed, GATE_delayed, D_delayed, COND0, RESETB_delayed, AWAKE;
reg notifier;
specify
(D + => Q) = (0: 0: 0, 0: 0: 0); // delays are tris,tfall
(posedge GATE => (Q +: D)) = (0: 0: 0, 0: 0: 0); // delays are tris,tfall
$width(posedge GATE, 0: 0: 0, 0, notifier);
$setuphold(negedge GATE, posedge D, 0: 0: 0, 0: 0: 0, notifier,,, GATE_delayed, D_delayed);
$setuphold(negedge GATE, negedge D, 0: 0: 0, 0: 0: 0, notifier,,, GATE_delayed, D_delayed);
endspecify
`endif
endmodule
| 7.212805 |
module sky130_fd_sc_hvl__einvn (
Z,
A,
TE_B,
VPWR,
VGND,
VPB,
VNB
);
// Module ports
output Z;
input A;
input TE_B;
input VPWR;
input VGND;
input VPB;
input VNB;
// Local signals
wire pwrgood_pp0_out_A;
wire pwrgood_pp1_out_teb;
// Name Output Other arguments
sky130_fd_sc_hvl__udp_pwrgood_pp$PG pwrgood_pp0 (
pwrgood_pp0_out_A,
A,
VPWR,
VGND
);
sky130_fd_sc_hvl__udp_pwrgood_pp$PG pwrgood_pp1 (
pwrgood_pp1_out_teb,
TE_B,
VPWR,
VGND
);
notif0 notif00 (Z, pwrgood_pp0_out_A, pwrgood_pp1_out_teb);
endmodule
| 7.212805 |
module sky130_fd_sc_hvl__einvn (
Z,
A,
TE_B
);
// Module ports
output Z;
input A;
input TE_B;
// Name Output Other arguments
notif0 notif00 (Z, A, TE_B);
endmodule
| 7.212805 |
module sky130_fd_sc_hvl__einvn (
Z,
A,
TE_B
);
// Module ports
output Z;
input A;
input TE_B;
// Module supplies
supply1 VPWR;
supply0 VGND;
supply1 VPB;
supply0 VNB;
// Name Output Other arguments
notif0 notif00 (Z, A, TE_B);
endmodule
| 7.212805 |
module sky130_fd_sc_hvl__einvn_1 (
Z,
A,
TE_B,
VPWR,
VGND,
VPB,
VNB
);
output Z;
input A;
input TE_B;
input VPWR;
input VGND;
input VPB;
input VNB;
sky130_fd_sc_hvl__einvn base (
.Z(Z),
.A(A),
.TE_B(TE_B),
.VPWR(VPWR),
.VGND(VGND),
.VPB(VPB),
.VNB(VNB)
);
`ifdef FUNCTIONAL
/*
* Copyright 2020 The SkyWater PDK Authors
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
* SPDX-License-Identifier: Apache-2.0
*/
specify
if (~TE_B) (A - => Z) = (0: 0: 0, 0: 0: 0); // delays are tris,tfall
(TE_B => Z ) = (0:0:0,0:0:0,0:0:0,0:0:0,0:0:0,0:0:0); // delays are t01,t10,t0Z,tZ1,t1Z,tZ0
endspecify
`endif
endmodule
| 7.212805 |
module sky130_fd_sc_hvl__einvn_1 (
Z,
A,
TE_B
);
output Z;
input A;
input TE_B;
// Voltage supply signals
supply1 VPWR;
supply0 VGND;
supply1 VPB;
supply0 VNB;
sky130_fd_sc_hvl__einvn base (
.Z(Z),
.A(A),
.TE_B(TE_B)
);
`ifdef FUNCTIONAL
/*
* Copyright 2020 The SkyWater PDK Authors
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
* SPDX-License-Identifier: Apache-2.0
*/
specify
if (~TE_B) (A - => Z) = (0: 0: 0, 0: 0: 0); // delays are tris,tfall
(TE_B => Z ) = (0:0:0,0:0:0,0:0:0,0:0:0,0:0:0,0:0:0); // delays are t01,t10,t0Z,tZ1,t1Z,tZ0
endspecify
`endif
endmodule
| 7.212805 |
module sky130_fd_sc_hvl__einvp (
Z,
A,
TE,
VPWR,
VGND,
VPB,
VNB
);
// Module ports
output Z;
input A;
input TE;
input VPWR;
input VGND;
input VPB;
input VNB;
// Local signals
wire pwrgood_pp0_out_A;
wire pwrgood_pp1_out_TE;
// Name Output Other arguments
sky130_fd_sc_hvl__udp_pwrgood_pp$PG pwrgood_pp0 (
pwrgood_pp0_out_A,
A,
VPWR,
VGND
);
sky130_fd_sc_hvl__udp_pwrgood_pp$PG pwrgood_pp1 (
pwrgood_pp1_out_TE,
TE,
VPWR,
VGND
);
notif1 notif10 (Z, pwrgood_pp0_out_A, pwrgood_pp1_out_TE);
endmodule
| 7.212805 |
module sky130_fd_sc_hvl__einvp (
Z,
A,
TE
);
// Module ports
output Z;
input A;
input TE;
// Name Output Other arguments
notif1 notif10 (Z, A, TE);
endmodule
| 7.212805 |
module sky130_fd_sc_hvl__einvp (
Z,
A,
TE
);
// Module ports
output Z;
input A;
input TE;
// Module supplies
supply1 VPWR;
supply0 VGND;
supply1 VPB;
supply0 VNB;
// Name Output Other arguments
notif1 notif10 (Z, A, TE);
endmodule
| 7.212805 |
module sky130_fd_sc_hvl__einvp_1 (
Z,
A,
TE,
VPWR,
VGND,
VPB,
VNB
);
output Z;
input A;
input TE;
input VPWR;
input VGND;
input VPB;
input VNB;
sky130_fd_sc_hvl__einvp base (
.Z(Z),
.A(A),
.TE(TE),
.VPWR(VPWR),
.VGND(VGND),
.VPB(VPB),
.VNB(VNB)
);
`ifdef FUNCTIONAL
/*
* Copyright 2020 The SkyWater PDK Authors
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
* SPDX-License-Identifier: Apache-2.0
*/
specify
if (TE) (A - => Z) = (0: 0: 0, 0: 0: 0); // delays are tris,tfall
(TE => Z ) = (0:0:0,0:0:0,0:0:0,0:0:0,0:0:0,0:0:0); // delays are t01,t10,t0Z,tZ1,t1Z,tZ0
endspecify
`endif
endmodule
| 7.212805 |
module sky130_fd_sc_hvl__einvp_1 (
Z,
A,
TE
);
output Z;
input A;
input TE;
// Voltage supply signals
supply1 VPWR;
supply0 VGND;
supply1 VPB;
supply0 VNB;
sky130_fd_sc_hvl__einvp base (
.Z (Z),
.A (A),
.TE(TE)
);
`ifdef FUNCTIONAL
/*
* Copyright 2020 The SkyWater PDK Authors
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
* SPDX-License-Identifier: Apache-2.0
*/
specify
if (TE) (A - => Z) = (0: 0: 0, 0: 0: 0); // delays are tris,tfall
(TE => Z ) = (0:0:0,0:0:0,0:0:0,0:0:0,0:0:0,0:0:0); // delays are t01,t10,t0Z,tZ1,t1Z,tZ0
endspecify
`endif
endmodule
| 7.212805 |
module sky130_fd_sc_hvl__fill (
VPWR,
VGND,
VPB,
VNB
);
// Module ports
input VPWR;
input VGND;
input VPB;
input VNB;
// No contents.
endmodule
| 7.212805 |
module sky130_fd_sc_hvl__fill ();
// Module supplies
supply1 VPWR;
supply0 VGND;
supply1 VPB;
supply0 VNB;
// No contents.
endmodule
| 7.212805 |
module sky130_fd_sc_hvl__fill ();
// Module supplies
supply1 VPWR;
supply0 VGND;
supply1 VPB;
supply0 VNB;
// No contents.
endmodule
| 7.212805 |
module sky130_fd_sc_hvl__fill_1 (
VPWR,
VGND,
VPB,
VNB
);
input VPWR;
input VGND;
input VPB;
input VNB;
sky130_fd_sc_hvl__fill base (
.VPWR(VPWR),
.VGND(VGND),
.VPB (VPB),
.VNB (VNB)
);
endmodule
| 7.212805 |
module sky130_fd_sc_hvl__fill_1 ();
// Voltage supply signals
supply1 VPWR;
supply0 VGND;
supply1 VPB;
supply0 VNB;
sky130_fd_sc_hvl__fill base ();
endmodule
| 7.212805 |
module sky130_fd_sc_hvl__fill_2 (
VPWR,
VGND,
VPB,
VNB
);
input VPWR;
input VGND;
input VPB;
input VNB;
sky130_fd_sc_hvl__fill base (
.VPWR(VPWR),
.VGND(VGND),
.VPB (VPB),
.VNB (VNB)
);
endmodule
| 7.212805 |
module sky130_fd_sc_hvl__fill_2 ();
// Voltage supply signals
supply1 VPWR;
supply0 VGND;
supply1 VPB;
supply0 VNB;
sky130_fd_sc_hvl__fill base ();
endmodule
| 7.212805 |
module sky130_fd_sc_hvl__fill_4 (
VPWR,
VGND,
VPB,
VNB
);
input VPWR;
input VGND;
input VPB;
input VNB;
sky130_fd_sc_hvl__fill base (
.VPWR(VPWR),
.VGND(VGND),
.VPB (VPB),
.VNB (VNB)
);
endmodule
| 7.212805 |
module sky130_fd_sc_hvl__fill_4 ();
// Voltage supply signals
supply1 VPWR;
supply0 VGND;
supply1 VPB;
supply0 VNB;
sky130_fd_sc_hvl__fill base ();
endmodule
| 7.212805 |
module sky130_fd_sc_hvl__fill_8 (
VPWR,
VGND,
VPB,
VNB
);
input VPWR;
input VGND;
input VPB;
input VNB;
sky130_fd_sc_hvl__fill base (
.VPWR(VPWR),
.VGND(VGND),
.VPB (VPB),
.VNB (VNB)
);
endmodule
| 7.212805 |
module sky130_fd_sc_hvl__fill_8 ();
// Voltage supply signals
supply1 VPWR;
supply0 VGND;
supply1 VPB;
supply0 VNB;
sky130_fd_sc_hvl__fill base ();
endmodule
| 7.212805 |
module sky130_fd_sc_hvl__inv (
Y,
A,
VPWR,
VGND,
VPB,
VNB
);
// Module ports
output Y;
input A;
input VPWR;
input VGND;
input VPB;
input VNB;
// Local signals
wire not0_out_Y;
wire pwrgood_pp0_out_Y;
// Name Output Other arguments
not not0 (not0_out_Y, A);
sky130_fd_sc_hvl__udp_pwrgood_pp$PG pwrgood_pp0 (
pwrgood_pp0_out_Y,
not0_out_Y,
VPWR,
VGND
);
buf buf0 (Y, pwrgood_pp0_out_Y);
endmodule
| 7.212805 |
module sky130_fd_sc_hvl__inv (
Y,
A
);
// Module ports
output Y;
input A;
// Local signals
wire not0_out_Y;
// Name Output Other arguments
not not0 (not0_out_Y, A);
buf buf0 (Y, not0_out_Y);
endmodule
| 7.212805 |
module sky130_fd_sc_hvl__inv (
Y,
A
);
// Module ports
output Y;
input A;
// Module supplies
supply1 VPWR;
supply0 VGND;
supply1 VPB;
supply0 VNB;
// Local signals
wire not0_out_Y;
// Name Output Other arguments
not not0 (not0_out_Y, A);
buf buf0 (Y, not0_out_Y);
endmodule
| 7.212805 |
module sky130_fd_sc_hvl__inv_1 (
Y,
A,
VPWR,
VGND,
VPB,
VNB
);
output Y;
input A;
input VPWR;
input VGND;
input VPB;
input VNB;
sky130_fd_sc_hvl__inv base (
.Y(Y),
.A(A),
.VPWR(VPWR),
.VGND(VGND),
.VPB(VPB),
.VNB(VNB)
);
`ifdef FUNCTIONAL
/*
* Copyright 2020 The SkyWater PDK Authors
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
* SPDX-License-Identifier: Apache-2.0
*/
specify
(A - => Y) = (0: 0: 0, 0: 0: 0); // delays are tris,tfall
endspecify
`endif
endmodule
| 7.212805 |
module sky130_fd_sc_hvl__inv_1 (
Y,
A
);
output Y;
input A;
// Voltage supply signals
supply1 VPWR;
supply0 VGND;
supply1 VPB;
supply0 VNB;
sky130_fd_sc_hvl__inv base (
.Y(Y),
.A(A)
);
`ifdef FUNCTIONAL
/*
* Copyright 2020 The SkyWater PDK Authors
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
* SPDX-License-Identifier: Apache-2.0
*/
specify
(A - => Y) = (0: 0: 0, 0: 0: 0); // delays are tris,tfall
endspecify
`endif
endmodule
| 7.212805 |
module sky130_fd_sc_hvl__inv_2 (
Y,
A,
VPWR,
VGND,
VPB,
VNB
);
output Y;
input A;
input VPWR;
input VGND;
input VPB;
input VNB;
sky130_fd_sc_hvl__inv base (
.Y(Y),
.A(A),
.VPWR(VPWR),
.VGND(VGND),
.VPB(VPB),
.VNB(VNB)
);
`ifdef FUNCTIONAL
/*
* Copyright 2020 The SkyWater PDK Authors
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
* SPDX-License-Identifier: Apache-2.0
*/
specify
(A - => Y) = (0: 0: 0, 0: 0: 0); // delays are tris,tfall
endspecify
`endif
endmodule
| 7.212805 |
module sky130_fd_sc_hvl__inv_2 (
Y,
A
);
output Y;
input A;
// Voltage supply signals
supply1 VPWR;
supply0 VGND;
supply1 VPB;
supply0 VNB;
sky130_fd_sc_hvl__inv base (
.Y(Y),
.A(A)
);
`ifdef FUNCTIONAL
/*
* Copyright 2020 The SkyWater PDK Authors
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
* SPDX-License-Identifier: Apache-2.0
*/
specify
(A - => Y) = (0: 0: 0, 0: 0: 0); // delays are tris,tfall
endspecify
`endif
endmodule
| 7.212805 |
module sky130_fd_sc_hvl__inv_4 (
Y,
A,
VPWR,
VGND,
VPB,
VNB
);
output Y;
input A;
input VPWR;
input VGND;
input VPB;
input VNB;
sky130_fd_sc_hvl__inv base (
.Y(Y),
.A(A),
.VPWR(VPWR),
.VGND(VGND),
.VPB(VPB),
.VNB(VNB)
);
`ifdef FUNCTIONAL
/*
* Copyright 2020 The SkyWater PDK Authors
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
* SPDX-License-Identifier: Apache-2.0
*/
specify
(A - => Y) = (0: 0: 0, 0: 0: 0); // delays are tris,tfall
endspecify
`endif
endmodule
| 7.212805 |
module sky130_fd_sc_hvl__inv_4 (
Y,
A
);
output Y;
input A;
// Voltage supply signals
supply1 VPWR;
supply0 VGND;
supply1 VPB;
supply0 VNB;
sky130_fd_sc_hvl__inv base (
.Y(Y),
.A(A)
);
`ifdef FUNCTIONAL
/*
* Copyright 2020 The SkyWater PDK Authors
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
* SPDX-License-Identifier: Apache-2.0
*/
specify
(A - => Y) = (0: 0: 0, 0: 0: 0); // delays are tris,tfall
endspecify
`endif
endmodule
| 7.212805 |
module sky130_fd_sc_hvl__inv_8 (
Y,
A,
VPWR,
VGND,
VPB,
VNB
);
output Y;
input A;
input VPWR;
input VGND;
input VPB;
input VNB;
sky130_fd_sc_hvl__inv base (
.Y(Y),
.A(A),
.VPWR(VPWR),
.VGND(VGND),
.VPB(VPB),
.VNB(VNB)
);
`ifdef FUNCTIONAL
/*
* Copyright 2020 The SkyWater PDK Authors
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
* SPDX-License-Identifier: Apache-2.0
*/
specify
(A - => Y) = (0: 0: 0, 0: 0: 0); // delays are tris,tfall
endspecify
`endif
endmodule
| 7.212805 |
module sky130_fd_sc_hvl__inv_8 (
Y,
A
);
output Y;
input A;
// Voltage supply signals
supply1 VPWR;
supply0 VGND;
supply1 VPB;
supply0 VNB;
sky130_fd_sc_hvl__inv base (
.Y(Y),
.A(A)
);
`ifdef FUNCTIONAL
/*
* Copyright 2020 The SkyWater PDK Authors
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
* SPDX-License-Identifier: Apache-2.0
*/
specify
(A - => Y) = (0: 0: 0, 0: 0: 0); // delays are tris,tfall
endspecify
`endif
endmodule
| 7.212805 |
module sky130_fd_sc_hvl__inv_16 (
Y,
A,
VPWR,
VGND,
VPB,
VNB
);
output Y;
input A;
input VPWR;
input VGND;
input VPB;
input VNB;
sky130_fd_sc_hvl__inv base (
.Y(Y),
.A(A),
.VPWR(VPWR),
.VGND(VGND),
.VPB(VPB),
.VNB(VNB)
);
`ifdef FUNCTIONAL
/*
* Copyright 2020 The SkyWater PDK Authors
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
* SPDX-License-Identifier: Apache-2.0
*/
specify
(A - => Y) = (0: 0: 0, 0: 0: 0); // delays are tris,tfall
endspecify
`endif
endmodule
| 7.212805 |
module sky130_fd_sc_hvl__inv_16 (
Y,
A
);
output Y;
input A;
// Voltage supply signals
supply1 VPWR;
supply0 VGND;
supply1 VPB;
supply0 VNB;
sky130_fd_sc_hvl__inv base (
.Y(Y),
.A(A)
);
`ifdef FUNCTIONAL
/*
* Copyright 2020 The SkyWater PDK Authors
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
* SPDX-License-Identifier: Apache-2.0
*/
specify
(A - => Y) = (0: 0: 0, 0: 0: 0); // delays are tris,tfall
endspecify
`endif
endmodule
| 7.212805 |
module sky130_fd_sc_hvl__lsbufhv2hv_hl (
X,
A,
VPWR,
VGND,
LOWHVPWR,
VPB,
VNB
);
// Module ports
output X;
input A;
input VPWR;
input VGND;
input LOWHVPWR;
input VPB;
input VNB;
// Local signals
wire pwrgood_pp0_out_A;
wire buf0_out_X;
// Name Output Other arguments
sky130_fd_sc_hvl__udp_pwrgood_pp$PG pwrgood_pp0 (
pwrgood_pp0_out_A,
A,
VPWR,
VGND
);
buf buf0 (buf0_out_X, pwrgood_pp0_out_A);
sky130_fd_sc_hvl__udp_pwrgood_pp$PG pwrgood_pp1 (
X,
buf0_out_X,
LOWHVPWR,
VGND
);
endmodule
| 7.212805 |
module sky130_fd_sc_hvl__lsbufhv2hv_hl (
X,
A
);
// Module ports
output X;
input A;
// Name Output Other arguments
buf buf0 (X, A);
endmodule
| 7.212805 |
module sky130_fd_sc_hvl__lsbufhv2hv_hl (
X,
A
);
// Module ports
output X;
input A;
// Module supplies
supply1 VPWR;
supply0 VGND;
supply1 LOWHVPWR;
supply1 VPB;
supply0 VNB;
// Name Output Other arguments
buf buf0 (X, A);
endmodule
| 7.212805 |
module sky130_fd_sc_hvl__lsbufhv2hv_hl_1 (
X,
A,
VPWR,
VGND,
LOWHVPWR,
VPB,
VNB
);
output X;
input A;
input VPWR;
input VGND;
input LOWHVPWR;
input VPB;
input VNB;
sky130_fd_sc_hvl__lsbufhv2hv_hl base (
.X(X),
.A(A),
.VPWR(VPWR),
.VGND(VGND),
.LOWHVPWR(LOWHVPWR),
.VPB(VPB),
.VNB(VNB)
);
`ifdef FUNCTIONAL
/*
* Copyright 2020 The SkyWater PDK Authors
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
* SPDX-License-Identifier: Apache-2.0
*/
specify
(A + => X) = (0: 0: 0, 0: 0: 0);
endspecify
`endif
endmodule
| 7.212805 |
module sky130_fd_sc_hvl__lsbufhv2hv_hl_1 (
X,
A
);
output X;
input A;
// Voltage supply signals
supply1 VPWR;
supply0 VGND;
supply1 LOWHVPWR;
supply1 VPB;
supply0 VNB;
sky130_fd_sc_hvl__lsbufhv2hv_hl base (
.X(X),
.A(A)
);
`ifdef FUNCTIONAL
/*
* Copyright 2020 The SkyWater PDK Authors
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
* SPDX-License-Identifier: Apache-2.0
*/
specify
(A + => X) = (0: 0: 0, 0: 0: 0);
endspecify
`endif
endmodule
| 7.212805 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.