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.

cver simulator instantiation problem

Status
Not open for further replies.

maheshkumar.g

Member level 1
Joined
Oct 7, 2012
Messages
35
Helped
0
Reputation
0
Reaction score
0
Trophy points
1,286
Activity points
1,515
hi all,
i am new to this forum, i have a doubt on verilog simulation, i am doing 4 bit ripple carry adder program where i intantiated full adder and i am able to execute the ripple carry adder program only if the fulladder program is with in the folder where my riplle carry adder program is present. And when i call it from another folder it says unresolved UDPS please let me know whether i can call the full adder from another folder.

my verilog program:


Code Verilog - [expand]
1
2
3
4
5
6
7
8
9
module fa4(s,c,a,b,ci);
input [3:0] a,b;
output [3:0] s,c;
input ci;
fa f0(s[0],c[0],a[0],b[0],ci);
fa f1(s[1],c[1],a[1],b[1],c[0]);
fa f2(s[2],c[2],a[2],b[2],c[1]);
fa f3(s[3],c[3],a[3],b[3],c[2]);
endmodule


hope u people reply me as soon as possible
 
Last edited by a moderator:

put fa module in the same file fa4 module is
 

put fa module in the same file fa4 module is

thanks,but i want to know whether we can call the modules from different directory or not instead of copying them on to the program and also can we create global modules so that we can call them if so please explain it with an example....thanks in advacnce
:???:
 

Status
Not open for further replies.

Part and Inventory Search

Welcome to EDABoard.com

Sponsor

Back
Top