学着写一个很简单的MOORE状态机~
但是在定义状态类型,综合时出现错误~
type statetype is (idle,decision,write,read); signal present_state,next_state:statetype;
提示错误是unsupported feature error:unresolved signal is mutiply driven~
找到相关内容讲的是多重驱动的问题~
但是在原例子中也只是use ieee.std_logic_1164.all而已,貌似不再需要其他的支持文件了~
紧急求助!!! |