共1条
1/1 1 跳转至页
请教大虾
architecture behav of test1 is
type my_state is(state1,state2);
signal p_state,n_state:my_state;
signal n:integer range 0 to 10;
begin
process(p_state,hf1)
begin
case p_state is
when state1 =>
n<=0;
dataout<="00000000";
if(hf1='0') then
n_state<=state2;
else
n_state<=state1;
end if;
when state2 =>
dataout<=datain1;
n<= n + 1;
if(n = 10) then
n_state<=state1;
else
n_state<=state2;
end if;
when others =>
null;
end case;
end process;
process(rst,clk)
begin
if(rst='1') then
p_state<=state1;
elsif(clk='1' and clk'event) then
p_state<=n_state;
end if;
end process;
end behav;
本意想在状态为state2时,把10个输入送给输出,然后又回到state1
结果仿真的时候,发现在state2情况下,n并不是在每个时钟
的上升沿递增,而是一系列很乱的数字,象毛刺似的,状态也就一直
处于state2下,但小弟我实在看不出程序哪儿有问题,请教大虾
我用的是max+plus2 10.0版本
谢谢
关键词: 请教 大虾
共1条
1/1 1 跳转至页
回复
有奖活动 | |
---|---|
【有奖活动】分享技术经验,兑换京东卡 | |
话不多说,快进群! | |
请大声喊出:我要开发板! | |
【有奖活动】EEPW网站征稿正在进行时,欢迎踊跃投稿啦 | |
奖!发布技术笔记,技术评测贴换取您心仪的礼品 | |
打赏了!打赏了!打赏了! |
打赏帖 | |
---|---|
与电子爱好者谈读图二被打赏50分 | |
【FRDM-MCXN947评测】Core1适配运行FreeRtos被打赏50分 | |
【FRDM-MCXN947评测】双核调试被打赏50分 | |
【CPKCORRA8D1B评测】---移植CoreMark被打赏50分 | |
【CPKCORRA8D1B评测】---打开硬件定时器被打赏50分 | |
【FRDM-MCXA156评测】4、CAN loopback模式测试被打赏50分 | |
【CPKcorRA8D1评测】--搭建初始环境被打赏50分 | |
【FRDM-MCXA156评测】3、使用FlexIO模拟UART被打赏50分 | |
【FRDM-MCXA156评测】2、rt-thread MCXA156 BSP制作被打赏50分 | |
【FRDM-MCXN947评测】核间通信MUTEX被打赏50分 |