1
0
mirror of https://github.com/aolofsson/oh.git synced 2025-01-30 02:32:53 +08:00
oh/stubs/hdl/BUFR.v
aolofsson 47fa7ff23d Adding stubs files for xilinx IP
Goal is to create models for all of these
2014-12-14 22:21:01 -05:00

19 lines
239 B
Verilog

module BUFR (/*AUTOARG*/
// Outputs
O,
// Inputs
I, CE, CLR
);
parameter BUFR_DIVIDE=0;
parameter SIM_DEVICE=0;
input I;
input CE;
input CLR;
output O;
assign O=I & CE & ~CLR;
endmodule // IBUFDS