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.

[SOLVED] combine 2 top files in verilog

Status
Not open for further replies.

conmourtz

Member level 1
Joined
Mar 29, 2012
Messages
36
Helped
0
Reputation
0
Reaction score
0
Trophy points
1,286
Location
Volos, Greece
Activity points
1,529
hello all,
i am trying to combine 2 top level files in 1. first of all, some inputs of the second file are outputs of the first. how i can join these inputs/outputs? and also, at the second top level, there are 3 outputs that will be inputs on the 1st top level design. how i can combine them? hope you understand if not, i can upload the source code to tell me exactly.
thank you and i am waiting for your answer soon :?:
 

R u using Verilog?? if yes then create one top file and instantiate the 2 top files u currently have into it. it will work fine.
 

yes i use verilog. but it didn't work. i need to connect some outputs of the first top level to the respective inputs of the second top level and some outputs of the second top level to some inputs of the first. how i am suppose to do that??? :/
 

`include "defines.v"

module fifo_top(w_clk,
r_clk,
rst_n,
w_en,
r_en,
w_data,
r_data,
w_full,
r_empty);

input w_clk;
input r_clk;
input rst_n;
input w_en;
input r_en;
input [`DATA-1:0] w_data;

output [`DATA-1:0] r_data;
output w_full;
output r_empty;

wire [`DATA-1:0] r_data;
wire w_full;
wire r_empty;

wire w_rst;
wire r_rst;
wire [`ADDR-1:0] w_addr;
wire [`ADDR-1:0] r_addr;
wire [`ADDR-1:0] r_addr_gray;
wire [`ADDR-1:0] r_addr_gray_sync;
wire [`ADDR-1:0] r_addr_bin_sync;
wire r_almost_empty_sync;
wire r_almost_empty;

rst_sync w_rst_sync(.clk(w_clk),
.rst_n(rst_n),
.rst_sync(w_rst));

rst_sync r_rst_sync(.clk(r_clk),
.rst_n(rst_n),
.rst_sync(r_rst));

d_sync #(`ADDR) r_addr_sync(.clk(w_clk),
.rst_n(w_rst),
.input_data(r_addr_gray),
.output_data(r_addr_gray_sync));

/*bin_to_gray_converter b_t_g_conv(.bin_data(r_addr),
.gray_data(r_addr_gray));*/ //Modified for Lint

gray_to_bin_converter g_t_b_conv(.gray_data(r_addr_gray_sync),
.bin_data(r_addr_bin_sync));

addr_ctrl wr_rd_ctrl(.w_clk(w_clk),
.r_clk(r_clk),
.w_rst(w_rst),
.r_rst(r_rst),
.w_en(w_en),
.r_en(r_en),
.w_addr(w_addr),
.r_addr(r_addr),
.r_addr_gray(r_addr_gray),
.w_full(w_full),
.r_empty(r_almost_empty_sync));

fifo_controller fifo_ctrl(.clk(w_clk),
.rst_n(w_rst),
.w_addr(w_addr),
.r_addr_sync(r_addr_bin_sync),
.w_full(w_full),
.r_empty(r_empty),
.r_almost_empty(r_almost_empty));

d_sync_1 #(1) almost_empty_sync(.clk(r_clk),
.rst_n(r_rst),
.input_data(r_almost_empty),
.output_data(r_almost_empty_sync));

rfdp128b66m1p10 fifo_ram(
.QA(r_data),
.AA(r_addr[`ADDR-2:0]),
.CLKA(r_clk),
.CENA(r_en),
.AB(w_addr[`ADDR-2:0]),
.DB(w_data),
.CLKB(w_clk),
.CENB(w_en)
);

endmodule

- - - Updated - - -

this is an example. just use this model. if you still have doubts, feel free to ask.
 
thank you that really helped.. :)
if i want to connect an output from one top level to the output from the other, i just declare s wire the pin right?
 

Status
Not open for further replies.

Part and Inventory Search

Welcome to EDABoard.com

Sponsor

Back
Top