caravel/verilog/rtl/buff_flash_clkrst.v

23 lines
357 B
Coq
Raw Normal View History

2022-10-15 05:56:40 -05:00
module buff_flash_clkrst (
2022-10-15 08:38:42 -05:00
`ifdef USE_POWER_PINS
inout VPWR,
inout VGND,
`endif
input[11:0] in_e,
input[2:0] in_w,
output[11:0] out_w,
output[2:0] out_e);
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-15 08:38:42 -05:00
`ifdef USE_POWER_PINS
2022-10-15 05:56:40 -05:00
.VGND(VGND),
.VNB(VGND),
.VPB(VPWR),
2022-10-15 08:38:42 -05:00
.VPWR(VPWR)
`endif
.A({in_e, in_w}),
.X({out_w, out_e})
);
2022-10-13 12:35:51 -05:00
2022-10-15 08:38:42 -05:00
endmodule