blob: e57d2852ebe6866a4a99aa24f7ba9c26398e4e97 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
module BlackBoxInverter(
input [0:0] clk,
input [0:0] reset,
output [0:0] io_in,
output [0:0] io_out
);
assign io_out = !io_in;
endmodule
module BlackBoxPassthrough(
input [0:0] clk,
input [0:0] reset,
output [0:0] io_in,
output [0:0] io_out
);
assign io_out = io_in;
endmodule
|