打印

VHDL程序求救

[复制链接]
1483|1
手机看帖
扫描二维码
随时随地手机跟帖
跳转到指定楼层
楼主
wy17416|  楼主 | 2007-12-27 23:55 | 只看该作者 回帖奖励 |倒序浏览 |阅读模式
VHDL程序求救
library ieee;
use ieee.std_logic_1164.all;
use ieee.std_logic_unsigned.all;
--use ieee.std_logic_arith.all;
entity frqctl is
port(frq_chg:in std_logic_vector(3 downto 0);
          q_out:out integer range 0 to 100000);--std_logic_vector(15 downto 0));
end frqctl;
architecture a of frqctl is
begin
--temp<=10000;--"0010011100010000";
process (frq_chg)
variable temp:integer range 1000 to 20000;--std_logic_vector(15 downto 0);
--variable b:integer ;
begin
temp:=10000;
if frq_chg(0)='0' then
temp:=temp+1;
elsif frq_chg(1)='0' then
temp:=temp-1;
elsif frq_chg(2)='0' then 
temp:=temp+100;
elsif frq_chg(3)='0' then
temp:=temp-100;
end if;
--b:=1/temp;
q_out<=100000000/temp;
end process;
end a;
编译时总是出现right operand of "divide"operator must be a power of 2
哪位高人帮忙指点呀~~

相关帖子

沙发
风中De舞者| | 2007-12-28 16:43 | 只看该作者

哪一步出现的错误?我复制你的程序上去编译没问题啊

使用特权

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

本版积分规则

10

主题

14

帖子

1

粉丝