2022-10-15 05:56:40 -05:00
|
|
|
module buff_flash_clkrst (
|
2022-10-16 18:15:46 -05:00
|
|
|
`ifdef USE_POWER_PINS
|
|
|
|
inout VPWR,
|
|
|
|
inout VGND,
|
|
|
|
`endif
|
2022-10-15 10:47:02 -05:00
|
|
|
input[11:0] in_n,
|
|
|
|
input[2:0] in_s,
|
|
|
|
output[11:0] out_s,
|
2022-10-16 18:15:46 -05:00
|
|
|
output[2:0] out_n);
|
2022-10-13 12:35:51 -05:00
|
|
|
|
2022-10-15 05:56:40 -05:00
|
|
|
sky130_fd_sc_hd__clkbuf_8 BUF[14:0] (
|
2022-10-16 18:15:46 -05:00
|
|
|
`ifdef USE_POWER_PINS
|
|
|
|
.VGND(VGND),
|
|
|
|
.VNB(VGND),
|
|
|
|
.VPB(VPWR),
|
|
|
|
.VPWR(VPWR),
|
|
|
|
`endif
|
2022-10-15 10:47:02 -05:00
|
|
|
.A({in_n, in_s}),
|
2022-10-16 18:15:46 -05:00
|
|
|
.X({out_s, out_n}));
|
2022-10-13 12:35:51 -05:00
|
|
|
|
2022-10-15 10:47:02 -05:00
|
|
|
endmodule
|