T
Thomas
Guest
I have to talk to registers that are 8 bits, but some bits are totally
unsused in them;
I get tons of warning from the synthetizer, using Xilinx's tools
for example:
signal myregister : std_logic_vector(7 downto 0);
but I am only using bit 2 and 3, but I need to have it 'formatted' over 8
bits so that I can do: myregister <= my8bitdata and it ignores everything
but the bits 2 and 3?
in short I am trying to find a way to tell the tool: I care only about
these bits, don't warn me about the others, I know I'm not using them.
unsused in them;
I get tons of warning from the synthetizer, using Xilinx's tools
for example:
signal myregister : std_logic_vector(7 downto 0);
but I am only using bit 2 and 3, but I need to have it 'formatted' over 8
bits so that I can do: myregister <= my8bitdata and it ignores everything
but the bits 2 and 3?
in short I am trying to find a way to tell the tool: I care only about
these bits, don't warn me about the others, I know I'm not using them.