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.

Synthesis with blackbox in Genus

artecoll

Newbie
Newbie level 2
Joined
Dec 30, 2022
Messages
2
Helped
0
Reputation
0
Reaction score
0
Trophy points
1
Activity points
95
Hi everyone. Might be someone knows answer for my question.
I have an HLB and he contains some macros. I want run synthesis with blackbox. I know, that we can set attributes hdl_error_on_blackbox and init_blackbox_for_undefined and find the name of module or macro, which created as blackbox, after elaborating (for example, command check_design). But can i define a name of macro or module, which i want use as blackbox, before elaborating and indicate to the tool that such module should be created as blackbox?
 
In Verilog, you can use the black_box attribute to specify a module as a black box:

Code:
(* black_box *)
module my_macro (...);
endmodule
In VHDL, you can use black_box synthesis directives:
Code:
attribute black_box : string;
attribute black_box of my_macro : entity is "true";
 

LaTeX Commands Quick-Menu:

Part and Inventory Search

Welcome to EDABoard.com

Sponsor

Back
Top