CTF/0ctf/EzLogic/behavioral models/BUFG.v

22 lines
361 B
Verilog

`ifdef verilator3
`else
`timescale 1 ps / 1 ps
`endif
//
// BUFG primitive for Xilinx FPGAs
// Compatible with Verilator tool (www.veripool.org)
// Copyright (c) 2019-2022 Frédéric REQUIN
// License : BSD
//
/*verilator coverage_off*/
module BUFG
(
input I,
output O /* verilator clocker */
);
assign O = I;
endmodule
/*verilator coverage_on*/