这样就可以在fpga内部实现2个双口ram了_第1页
这样就可以在fpga内部实现2个双口ram了_第2页
这样就可以在fpga内部实现2个双口ram了_第3页
全文预览已结束

VIP免费下载

版权说明:本文档由用户提供并上传,收益归属内容提供方,若内容存在侵权,请进行举报或认领

文档简介

1、这样就可以在 fpga内部实现 2 个双口 ram了这样就可以在fpga内部实现2 个双口ram了经过斑竹的提示,修改了程序,现在就可以在fpga内部实现2 个双口ram了,可以实现乒乓操作了library IEEE;use IEEE.STD_LOGIC_1164.all;use IEEE.STD_LOGIC_ARITH.all;use IEEE.STD_LOGIC_UNSIGNED.all;entity dualportram isport(clk : instd_logic;-dout_1: inout std_logic_vector(7 downto 0);-dout_2: inout

2、 std_logic_vector(7 downto 0)dout : inout std_logic_vector(7 downto 0);end dualportram;architecture action of dualportram iscomponent lpmramdp_1PORT(data: IN STD_LOGIC_VECTOR (15 DOWNTO 0);wren: IN STD_LOGIC := 1;wraddress : IN STD_LOGIC_VECTOR (11 DOWNTO 0);rdaddress : IN STD_LOGIC_VECTOR (12 DOWNT

3、O 0);clock: IN STD_LOGIC;q: OUT STD_LOGIC_VECTOR (7 DOWNTO 0);end component;component lpmramdpplusPORT(datawrenwraddressrdaddressclock: IN STD_LOGIC_VECTOR (15 DOWNTO 0);: IN STD_LOGIC := 1;: IN STD_LOGIC_VECTOR (12 DOWNTO 0);: IN STD_LOGIC_VECTOR (13 DOWNTO 0);: IN STD_LOGIC ;q: OUT STD_LOGIC_VECTO

4、R (7 DOWNTO 0);end component;signal wrCount_1 : std_logic_vector (11 DOWNTO 0);signal rdCount_1 : std_logic_vector (12 DOWNTO 0);signal dataIn_1 : std_logic_vector (15 downto 0);signal dataOut_1 : std_logic_vector (7 downto 0);signal wrCount_2 : std_logic_vector (12 DOWNTO 0);signal rdCount_2 : std_

5、logic_vector (13 DOWNTO 0);signal dataIn_2 : std_logic_vector (15 downto 0);signal dataOut_2 : std_logic_vector (7 downto 0);signal flag:std_logic;beginprocess(clk)beginif rising_edge(clk) thenwrCount_1 = wrCount_1 + 1;rdCount_1 = rdCount_1 + 1;wrCount_2 = wrCount_2 + 1;rdCount_2 = rdCount_2 + 1;flag = not flag;if (flag = 1) thendout = dataOut_1;elsedout dataIn_1,wren= 1,wraddress= wrCount_1,rdaddress= rdCount_1,clock= clk,-q= dout_1q= dataOut_1);u2: lpmramdpplusPORT map(data= dataIn_2,w

温馨提示

  • 1. 本站所有资源如无特殊说明,都需要本地电脑安装OFFICE2007和PDF阅读器。图纸软件为CAD,CAXA,PROE,UG,SolidWorks等.压缩文件请下载最新的WinRAR软件解压。
  • 2. 本站的文档不包含任何第三方提供的附件图纸等,如果需要附件,请联系上传者。文件的所有权益归上传用户所有。
  • 3. 本站RAR压缩包中若带图纸,网页内容里面会有图纸预览,若没有图纸预览就没有图纸。
  • 4. 未经权益所有人同意不得将文件中的内容挪作商业或盈利用途。
  • 5. 人人文库网仅提供信息存储空间,仅对用户上传内容的表现方式做保护处理,对用户上传分享的文档内容本身不做任何修改或编辑,并不能对任何下载内容负责。
  • 6. 下载文件中如有侵权或不适当内容,请与我们联系,我们立即纠正。
  • 7. 本站不保证下载资源的准确性、安全性和完整性, 同时也不承担用户因使用这些下载资源对自己和他人造成任何形式的伤害或损失。

评论

0/150

提交评论