1
0
mirror of https://github.com/aolofsson/oh.git synced 2025-02-07 06:44:09 +08:00
oh/stubs/hdl/BUFR.v

19 lines
239 B
Coq
Raw Normal View History

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