A
aspiring_enterprenur
Guest
I am trying to protect some verilog code and I can 't seem to protect
it if the code includes a 'define' defined in another file. I am using
verilog-xl and using the following command
verilog +protect design1.v
The design1.v has an include file that is the same directory that i am
trying to run the verilog command from.
Has anyone faced similar problems ? It works on VCS and Modelsim but
Verilog-XL has a issues, maybe there is something i am not doing right.
My file looks something like this :
module design1;
`include defines.h
`protect
// Lines of Code
`endprotect
endmodule
it if the code includes a 'define' defined in another file. I am using
verilog-xl and using the following command
verilog +protect design1.v
The design1.v has an include file that is the same directory that i am
trying to run the verilog command from.
Has anyone faced similar problems ? It works on VCS and Modelsim but
Verilog-XL has a issues, maybe there is something i am not doing right.
My file looks something like this :
module design1;
`include defines.h
`protect
// Lines of Code
`endprotect
endmodule