Continue to Site

Welcome to EDAboard.com

Welcome to our site! EDAboard.com is an international Electronics Discussion Forum focused on EDA software, circuits, schematics, books, theory, papers, asic, pld, 8051, DSP, Network, RF, Analog Design, PCB, Service Manuals... and a whole lot more! To participate you need to register. Registration is free. Click here to register now.

Need equivalent code VHDL testbench for Verilog testbench

Status
Not open for further replies.

win2010

Member level 1
Joined
Sep 30, 2010
Messages
35
Helped
0
Reputation
0
Reaction score
0
Trophy points
1,286
Activity points
1,605
It has reading external file and applying different values. Need code in VHDL pls help out.... It work fine in modelsim 6.5.

module Buf_tb;

// Inputs
reg clk;
reg reset;

reg [15:0]K_ldpc;

reg [0:0]input1;

integer file;

// Outputs

wire [0:0]output1;

// Instantiate the Unit Under Test (UUT)

Buffer_parity_gen uut (
.clk(clk),
.reset(reset),

.K_ldpc(K_ldpc),

.input1(input1),
.output1(output1)
);

initial begin
clk = 1;
file = $fopen("Input.txt", "r");

forever #50 clk=~clk;

end

initial begin
reset = 1;
#40 reset = 0;
end



always@(posedge clk)
if (reset==0)
begin
$fscanf(file,"%b",input1);
end

initial begin

K_ldpc=16'd32400;

end

endmodule
 

As a VHDL beginner, Instead of getting someone else to do it for you, why not have a go yourself?
 

Status
Not open for further replies.

Part and Inventory Search

Welcome to EDABoard.com

Sponsor

Back
Top