SAIFIINDUSTRIES's picture
Add Batch 8 with 10 repos
7df9186 verified
Raw
History Blame Contribute Delete
212 Bytes
module IOBUF #(
parameter integer DRIVE = 12,
parameter IOSTANDARD = "DEFAULT",
parameter SLEW = "SLOW"
) (
output O,
inout IO,
input I,
input T
);
bufif0 t (IO, I, T);
buf b (O, IO);
endmodule