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.

How to insert a hierarchy in RTL design

Status
Not open for further replies.

woshicloud

Newbie level 5
Joined
Aug 3, 2010
Messages
9
Helped
2
Reputation
4
Reaction score
2
Trophy points
1,283
Activity points
1,330
can any tool do following operation on RTL code?

from:
module A();
A1 A1();
A2 A2();
endmodule

to:(merge A1 A2 into a new module A12)
module A();
A12 A12();
endmodule

module A12();
A1 A1();
A2 A2();
endmodule

Thanks
 

my target is to insert a hierarchy into an RTL design, not netlist. Can dc_shell do such operation?
 

Hi, have you looked into VerilogMode EMACS? While not perfect, it could probably automate some of the tasks.
 

Status
Not open for further replies.

Part and Inventory Search

Welcome to EDABoard.com

Sponsor

Back
Top