当前位置:   article > 正文

根据状态转移图实现时序电路 (三段式状态机)

根据状态转移图实现时序电路 (三段式状态机)

看图编程

*
**

代码


module seq_circuit(
      input                C   ,
      input                clk ,
      input                rst_n,
 
      output   wire        Y   
);
reg [1:0] current_stage ;
reg [1:0] next_stage    ;
reg Y_reg;  //输出

//第一段 : 初始化当前状态和下一个状态
always @(posedge clk or negedge rst_n)begin
    if(!rst_n)begin
        current_stage <= 2'b00 ;
        next_stage    <= 2'b00 ;
    end 
    else begin
        current_stage <= next_stage ;
    end
end

//第二段 : 翻译状态转换图
always @ (*)begin
      case(current_stage)
      2'b00:begin  next_stage = (C==1 ? 2'b01 : 2'b00); end
      2'b01:begin  next_stage = (C==1 ? 2'b01 : 2'b11); end
      2'b11:begin  next_stage = (C==1 ? 2'b10 : 2'b11); end
      2'b10:begin  next_stage = (C==1 ? 2'b10 : 2'b00); end
      endcase
end
  
 //第三段 : 控制输出 
always @ (*)begin
    if(!rst_n)begin
        Y_reg <= 1'b0;
    end
    else begin
        casex({current_stage,C})
                3'b00_x : Y_reg <= 1'b0 ;
                3'b01_x : Y_reg <= 1'b0 ;
                3'b11_x : Y_reg <= 1'b1 ;
                3'b10_1 : Y_reg <= 1'b1 ;
                3'b10_0 : Y_reg <= 1'b0 ;
         endcase
    end
            
  end
  
assign Y = Y_reg ;
endmodule
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46
  • 47
  • 48
  • 49
  • 50
  • 51
  • 52
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/2023面试高手/article/detail/660017
推荐阅读
相关标签
  

闽ICP备14008679号