blob: 524c5b0199d4fcf4266a38a8c31f1ec36286ac1b [file] [log] [blame]
// type: OR2
`timescale 1ns/10ps
`celldefine
module OR2XL (Y, A, B);
output Y;
input A, B;
// Function
or (Y, A, B);
// Timing
specify
(A => Y) = 0;
(B => Y) = 0;
endspecify
endmodule
`endcelldefine