mirror of
https://github.com/aolofsson/oh.git
synced 2025-02-07 06:44:09 +08:00
19 lines
239 B
Coq
19 lines
239 B
Coq
|
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
|