verilog/labs/lab6/bibpTB.v
2024-07-12 23:57:42 +03:00

16 lines
280 B
Verilog

module bibpTB();
parameter UZUNLUK = 8;
reg [UZUNLUK+2:0] buyruk;
wire [UZUNLUK/2:0] sonuc;
bibp #(.UZUNLUK(UZUNLUK)) uut(.buyruk(buyruk), .sonuc(sonuc));
initial begin
$dumpfile("vbibp.vcd");
$dumpvars;
buyruk = 11'b001_0101_0100; #10;
$finish;
end
endmodule