VDHL写的一段代码:
type Reg is array(0 to 3) of std_logic_vector(7 downto 0);
...
Rd : in STD_LOGIC_VECTOR (1 downto 0); --端口声明里的
function decode(R_code : in std_logic_vector(1 downto 0)) --2-4译码器
return integer is
variable tmp : integer;
begin
case R_code is
when "00" => tmp:=0;
when "01" => tmp:=1;
when "10" => tmp:=2;
when "11" => tmp:=3;
when others => NULL;
end case;
return tmp;
end;
process (CLK)
variable R : Reg;
variable tmp: integer;
begin
...
tmp :=decode(Rd);
R_load(R(tmp)(2 downto 0),Rs);
...
R_load这个函数在这个问题里无关紧要。
让我很崩溃的是上面最后两行代码在板子上没效果,但下面这两行代码却没问题:
tmp :=2;
R_load(R(tmp)(2 downto 0),Rs);
decode(Rd)这个函数绝对没问题,我试过单独调用,Rd=“10”时tmp就是2.
既然tmp是2,为啥R(tmp)与R(2)不等价呢?
说白了我就是想让R的第一维下标依赖于板子上的开关Rd。
现在做不到这点,请问有什么别的好办法?
环境是ISE11,芯片是SPARTAN3 |