我是用状态机来控制读写信号的,程序如下:
process(rst,cp)
begin
if rst='0' then
ncs1<='1';
ncs2<='1';
nwr<='1';
nrd<='1';
xs4<='1';
xs6<='1';
xs5<='1';
elsif cp'event and cp='1' then
if state_w=s3 then
ncs1<='0';
ncs2<='1';
nwr<='0';
nrd<='1';
xs4<='1';
xs6<='1';
xs5<='0';
elsif state_r=s6 then
ncs1<='0';
ncs2<='1';
nwr<='1';
nrd<='0';
xs4<='1';
xs6<='1';
xs5<='0';
else
ncs1<='1';
ncs2<='1';
nwr<='1';
nrd<='1';
xs4<='1';
xs6<='1';
xs5<='0';
end if;
end if;
end process;
其中state_w写状态机和state_r读状态机分别在两个进程里
另外我的示波器可以测60MHZ的波形,我查不清为什么波形会那么陡,不过读写出来的数据基本上是对的,真奇怪啊!