mirror of
https://github.com/aolofsson/oh.git
synced 2025-01-30 02:32:53 +08:00
47fa7ff23d
Goal is to create models for all of these
19 lines
239 B
Verilog
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
|