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.

help in verilog hdl codes problems

Status
Not open for further replies.

hareshcooleng

Member level 1
Joined
Aug 6, 2010
Messages
36
Helped
1
Reputation
2
Reaction score
1
Trophy points
1,288
Location
ahmedabad
Activity points
1,480
i was writing down my up/down counter program. but now i design adder to connect its input to the output of counter so any on know about how to i do it. any code about its.
 

What you want is to connect the outputs of one module to the inputs to another module?
For example :
-updown is the name of your up/down counter.
-adder your adder
-top is the top module where updown and adder are two submodule instantiated

module top

input ....
output ...

updown counter1(inputs_counter,outputs_counter);


...
endmodule
 
Pl provide with the full code for the same.
 

Status
Not open for further replies.

Part and Inventory Search

Welcome to EDABoard.com

Sponsor

Back
Top