打印

很郁闷的问题

[复制链接]
1706|2
手机看帖
扫描二维码
随时随地手机跟帖
跳转到指定楼层
楼主
cracker_bj|  楼主 | 2009-11-9 03:17 | 只看该作者 回帖奖励 |倒序浏览 |阅读模式
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

相关帖子

沙发
amtek| | 2009-11-9 14:26 | 只看该作者
确实很郁闷

使用特权

评论回复
板凳
ic00| | 2009-12-3 22:19 | 只看该作者
我想你没有理解明信号和变量的区别,你加一个信号就可以了,我想。你可以试一试

使用特权

评论回复
发新帖 我要提问
您需要登录后才可以回帖 登录 | 注册

本版积分规则

3

主题

3

帖子

0

粉丝