10464|3

35

帖子

0

TA的资源

一粒金砂(中级)

楼主
 

vhdl如何定义数组? [复制链接]

用RAM 的IP核进行读写操作,要用数组将写进ram的值存储下来,下面是代码,编译不通过,出现Error (10476): VHDL error at testRam.vhd(61): type of identifier "datain" does not agree with its usage as "integer" type是我的输入的数据和地址都应该换成整数输入么?

TYPE matrix_index is array (31 downto 0) of std_logic_vector(31 downto 0);

SIGNAL men_data: matrix_index;

begin
       
        process(clock,rst)
                begin
               
                if(clock='1'and clock'event) then
                        if(rst='1')then
                                count <=(others=>'0');
                        else
                                if wren='0'then
                                                count <= count +1;
                                end if;
                        end if;
                end if;

                if(clock='1'and clock'event) then
                        if(rst='1')then
                                datain<=(others=>'0');
                                address1<=(others=>'0');
                        else
                                if wren='1'then                                   --写有效
                               
                                        datain<=datain+1;
                                        address1<=address1+1;
                                        men_data(datain)<=datain;
                                else                        --读有效 读出某个地址上的数据
                                        address1<=men_data(count);
                                end if;
                        end if;
                end if;
        end process;


此帖出自FPGA/CPLD论坛

最新回复

RAM必须能支持读数据,只能写不能读这个RAM没意义啊。 下面就是根据地址,选择数据输出 data_out   详情 回复 发表于 2016-5-17 22:05
点赞 关注
 

回复
举报

1950

帖子

4

TA的资源

版主

沙发
 

点评

这个ram的读写地址都没有输入吧?是要自己去用testbench加激励么?  详情 回复 发表于 2016-5-17 14:19
个人签名MicroPython中文社区https://micropython.org.cn/forum/  
 
 

回复

35

帖子

0

TA的资源

一粒金砂(中级)

板凳
 
本帖最后由 huangfujing 于 2016-5-17 20:47 编辑
5525 发表于 2016-5-16 21:37
推荐参考
http://www.rfwireless-world.com/source-code/VHDL/read-write-RAM-vhdl-code.html大神,问一下,ram这个可以选取地址读出相对应的数据么?
此帖出自FPGA/CPLD论坛
 
 
 

回复

1950

帖子

4

TA的资源

版主

4
 
RAM必须能支持读数据,只能写不能读这个RAM没意义啊。

下面就是根据地址,选择数据输出
data_out <= ram1_1(conv_integer(r_add));
此帖出自FPGA/CPLD论坛
个人签名MicroPython中文社区https://micropython.org.cn/forum/  
 
 
 

回复
您需要登录后才可以回帖 登录 | 注册

随便看看
查找数据手册?

EEWorld Datasheet 技术支持

相关文章 更多>>
关闭
站长推荐上一条 1/7 下一条

 
EEWorld订阅号

 
EEWorld服务号

 
汽车开发圈

About Us 关于我们 客户服务 联系方式 器件索引 网站地图 最新更新 手机版

站点相关: 国产芯 安防电子 汽车电子 手机便携 工业控制 家用电子 医疗电子 测试测量 网络通信 物联网

北京市海淀区中关村大街18号B座15层1530室 电话:(010)82350740 邮编:100190

电子工程世界版权所有 京B2-20211791 京ICP备10001474号-1 电信业务审批[2006]字第258号函 京公网安备 11010802033920号 Copyright © 2005-2025 EEWORLD.com.cn, Inc. All rights reserved
快速回复 返回顶部 返回列表