rearrangement
This commit is contained in:
16
iverilog/tobb/labs/lab6/bibpTB.v
Normal file
16
iverilog/tobb/labs/lab6/bibpTB.v
Normal file
@ -0,0 +1,16 @@
|
||||
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'b111_0101_0100; #10;
|
||||
$finish;
|
||||
end
|
||||
endmodule
|
Reference in New Issue
Block a user