EDA实验报告完结版(3)

2019-08-01 22:36

entity schk is

port(din,clk,clr:in std_logic;

ab:out std_logic_vector(1 downto 0)); end schk;

architecture behav of schk is

signal d:std_logic_vector(7 downto 0); signal q:integer range 0 to 8;

type fsm_st is(s0,s1,s2,s3,s4,s5,s6,s7,s8); signal current_state,next_state:fsm_st; begin

d<=\ reg:process(clr,clk) begin

if clr='1' then current_state<=s0; elsif clk='1' and clk'event then current_state<=next_state; end if; end process;

com:process(current_state,din) begin

case current_state is when s0=>q<=0;

if din='0' then next_state<=s0; else next_state<=s1; end if; when s1=>q<=1;

if din='1' then next_state<=s0; else next_state<=s2; end if;

- 10 -

when s2=>q<=2;

if din='1' then next_state<=s0; else next_state<=s3; end if;

when s3=>q<=3;

if din='1' then next_state<=s0; else next_state<=s4; end if; when s4=>q<=4;

if din='0' then next_state<=s0; else next_state<=s5; end if; when s5=>q<=5;

if din='0' then next_state<=s0; else next_state<=s6; end if; when s6=>q<=6;

if din='0' then next_state<=s0; else next_state<=s7; end if; when s7=>q<=7;

if din='1' then next_state<=s0; else next_state<=s8; end if; when s8=>q<=8; next_state<=s0; end case; end process;

process(q)

- 11 -

begin

if q=8 then ab<=\ else ab<=\ end if; end process; end behav; 2、实验仿真:

- 12 -


EDA实验报告完结版(3).doc 将本文的Word文档下载到电脑 下载失败或者文档不完整,请联系客服人员解决!

下一篇:刑法中三阶层与四要件

相关阅读
本类排行
× 注册会员免费下载(下载后可以自由复制和排版)

马上注册会员

注:下载文档有可能“只有目录或者内容不全”等情况,请下载之前注意辨别,如果您已付费且无法下载或内容有问题,请联系我们协助你处理。
微信: QQ: