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 IP block that no one can modify/see its contents???

Status
Not open for further replies.

khaila

Full Member level 2
Joined
Jan 13, 2007
Messages
121
Helped
5
Reputation
10
Reaction score
1
Trophy points
1,298
Activity points
2,105
ncprotect

I have several HW implementaion blocks that I develop.
I want to share them but I don't want the other ppl to see its content.
Just to use it as black box.
something like EDIF files.

how I can generate like this desire???
 

modify its contents

I think you should read "reuse methodology manual". It'll answer all ur questions. its available in the forum

Added after 3 minutes:
 

top ip blocker

u can convert to blackbox by adding
`protect at the beginig and `endprotect at the end to ur source code.then compile in verilogXL with
verilog filename.v +protect.then it wl generate encrypted file with .vp extension

ex:

`protect
module xyz();
......
......
.....
endmodule
`endprotect

Added after 43 seconds:

NCprotect option is directly available in nclaunch by rightclicking on file
 

ncprotect options

nikhilindia85 said:
u can convert to blackbox by adding
`protect at the beginig and `endprotect at the end to ur source code.then compile in verilogXL with
verilog filename.v +protect.then it wl generate encrypted file with .vp extension

ex:

`protect
module xyz();
......
......
.....
endmodule
`endprotect

Added after 43 seconds:

NCprotect option is directly available in nclaunch by rightclicking on file

What if I am using VHDL???
 

ncprotect vhdl

i think same thing can be applicable for vhdl also.
 

Status
Not open for further replies.

Part and Inventory Search

Welcome to EDABoard.com

Sponsor

Back
Top