Archived
1
0
This repository has been archived on 2026-02-06. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
iceberg/testbench/and16_tb.v
T
2022-03-04 01:38:36 +01:00

11 lines
231 B
Verilog

'include "predefined/and16.v"
module and_tb();
reg [15:0]ta, [15:0]tb;
wire [15:0]y;
and16 dut(y, ta, tb);
initial begin
$monitor("IN: %b, %b ",ta, tb, "OUT: ",y);
end
endmodule