共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 跳转至页
回复
| 有奖活动 | |
|---|---|
| 2026年“我要开发板活动”第三季,开始了! | |
| 硬核工程师专属补给计划——填盲盒 | |
| “我踩过的那些坑”主题活动——第002期 | |
| 【EEPW电子工程师创研计划】技术变现通道已开启~ | |
| 发原创文章 【每月瓜分千元赏金 凭实力攒钱买好礼~】 | |
| 【EEPW在线】E起听工程师的声音! | |
| 高校联络员开始招募啦!有惊喜!! | |
| 【工程师专属福利】每天30秒,积分轻松拿!EEPW宠粉打卡计划启动! | |
我要赚赏金打赏帖 |
|
|---|---|
| 以启明云端ESP32P4开发板实现TF卡读写功能被打赏¥28元 | |
| 【分享开发笔记,赚取电动螺丝刀】树莓派5串口UART0配置被打赏¥25元 | |
| 【STM32F103ZET6】17:分享在Rtos项目中断管理的使用经验被打赏¥23元 | |
| 【STM32F103ZET6】16:分享在中断中恢复串口任务,遇到的问题被打赏¥31元 | |
| 在FireBeetle2ESP32-C5上实现温度大气压检测及显示被打赏¥21元 | |
| 【分享开发笔记,赚取电动螺丝刀】SAME51双串口收发配置被打赏¥27元 | |
| Chaos-nano操作系统在手持式VOC检测设备上的应用被打赏¥37元 | |
| 【分享开发笔记,赚取电动螺丝刀】关于在导入第三方库lib时,wchart类型冲突的原因及解决方案被打赏¥30元 | |
| 在FireBeetle2ESP32-C5上实现温湿度检测和显示被打赏¥20元 | |
| 在FireBeetle2ESP32-C5上实现光照强度检测及显示被打赏¥21元 | |
我要赚赏金
