I have a constant defined in my VHDL package.
constant USE_OSD : integer := 0;
And this is something that I change prior to synthesis in my package. I would like to use this constant as my MUX select line in my VHDL code. How can I do this?
for example, something like:
s_out <= path_a WHEN (USE_OSD = 0) else path_b;
Thanks,
--Rudy