Continue to Site

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
92
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";
 


Write your reply...

LaTeX Commands Quick-Menu:

Part and Inventory Search

Welcome to EDABoard.com

Sponsor

Back
Top