题目描述
如图所示为两种状态机中的一种,请根据状态转移图写出代码,状态转移线上的0/0等表示的意思是过程中data/flag的值。
要求:
1、 必须使用对应类型的状态机
2、 使用三段式描述方法,输出判断要求要用到对现态的判断
注意rst为低电平复位
信号示意图:
`timescale 1ns/1ns
module fsm1(
input wire clk ,
input wire rst ,
input wire data ,
output reg flag
);
//*************code***********//
//三段式状态机中第三段采用时序逻辑,next_state作为判断条件
//两段式状态机,输出和状态判断分开写时,第三段仍然采用组合逻辑,current_state作为判断条件
//moore型状态机输出只与当前状态有关,mealy型状态机还与当前输入有关
reg [1:0] current_state,next_state;
always@(posedge clk or negedge rst)begin
if(!rst)
current_state<=2'b00;
else
current_state<=next_state;
end
always@(*)begin
case(current_state)
2'b00:next_state <= (data==1) ? 2'b01 : 2'b00 ;
2'b01:next_state <= (data==1) ? 2'b10 : 2'b01 ;
2'b10:next_state <= (data==1) ? 2'b11 : 2'b10 ;
2'b11:next_state <= (data==1) ? 2'b00 : 2'b11 ;
endcase
end
always@(posedge clk or negedge rst)begin
if(!rst)
flag<=0;
else if(current_state==2'b11 & data==1)
flag<=1;
else
flag<=0;
end
//*************code***********//
endmodule