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.

conversion from vhdl to verilog

Status
Not open for further replies.

meeraamrita

Newbie level 1
Joined
Oct 15, 2015
Messages
1
Helped
0
Reputation
0
Reaction score
0
Trophy points
1
Activity points
6
hi,
how do i convert
generic(alu_type : string := "DEFAULT"); in vhdl to verilog.
 

In the module declaration
Code:
module module_name #(
 parameter alu_type ="DEFAULT",
// other module parameters
) (
);
or in the instantiation
Code:
module_name #(
.alu_type("DEFAULT"),
// other module parameters
) instance_name (
);
 
Status
Not open for further replies.

Similar threads

Part and Inventory Search

Welcome to EDABoard.com

Sponsor

Back
Top