1
0
mirror of https://github.com/aolofsson/oh.git synced 2025-01-30 02:32:53 +08:00
oh/stubs/hdl/BUFIO.v
Andreas Olofsson 239ca128c2 Vivado run through
-missed connections
-mismatched bus widths
-missing IP blocks
-cleanup
-proper DV starts tomorrow
2015-04-08 23:40:16 -04:00

14 lines
135 B
Verilog

module BUFIO (/*AUTOARG*/
// Outputs
O,
// Inputs
I
);
input I;
output O;
assign O=I;
endmodule // BUFIO