mirror of
https://github.com/aolofsson/oh.git
synced 2025-01-30 02:32:53 +08:00
18 lines
216 B
Coq
18 lines
216 B
Coq
|
module IBUFDS (/*AUTOARG*/
|
||
|
// Outputs
|
||
|
O,
|
||
|
// Inputs
|
||
|
I, IB
|
||
|
);
|
||
|
|
||
|
parameter DIFF_TERM=0;
|
||
|
parameter IOSTANDARD=0;
|
||
|
|
||
|
input I;
|
||
|
input IB;
|
||
|
output O;
|
||
|
|
||
|
assign O = I & ~IB;
|
||
|
|
||
|
endmodule // IBUFDS
|