C
chris
Guest
I've got a VHDL package file containing all the constants
declaration of my project and I'd like to put some report
in it in case some people would change the value of some constants
that can't be change.
I've tried the following example but it does not compile. Do someone
can tell me how to do this correctly ?
package my_package is
constant a : positive := 5;
constant b : positive := 3;
assert a < b
report "a < b"
severity error;
end;
Thanks, Christophe.
declaration of my project and I'd like to put some report
in it in case some people would change the value of some constants
that can't be change.
I've tried the following example but it does not compile. Do someone
can tell me how to do this correctly ?
package my_package is
constant a : positive := 5;
constant b : positive := 3;
assert a < b
report "a < b"
severity error;
end;
Thanks, Christophe.