|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有账号?注册
x
用xillinx fpga开发板,对sram(128k*8)进行复位操作。思路是置ram为写,对地址进行遍历,写入数据为0.
程序为
RST_SRAM: process(rst,clk,addr_reg)
begin
if(clk'event and clk='1')then
if(rst='1')then
CE<='0';WE<='0';OE<='1';
if(addr_reg="11111111111111111")then
addr_reg<="00000000000000000";
data<=x"00";
else
addr_reg<=addr_reg+1;
data<=x"00";
end if;
end if;
end if;
end process;
编译报错,在process那一行,# Error: COMP96_0046: systerm.vhd : (180, 11): Sequential statement expected
不是很明白问题出在哪里,望指教。 |
|