HDLBits: Exams/2014 q3fsm 刷题记录

Consider a finite state machine with inputs s and w. Assume that the FSM begins in a reset state called A, as depicted below. The FSM remains in state A as long as s = 0, and it moves to state B when s = 1. Once in state B the FSM examines the value of the input w in the next three clock cycles. If w = 1 in exactly two of these clock cycles, then the FSM has to set an output z to 1 in the following clock cycle. Otherwise z has to be 0. The FSM continues checking w for the next three clock cycles, and so on. The timing diagram below illustrates the required values of z for different values of w.

Use as few states as possible. Note that the s input is used only in state A, so you need to consider just the w input.

直接上代码。

module top_module (
    input clk,
    input reset,   // Synchronous reset
    input s,
    input w,
    output reg z
  );

  parameter A = 1'h0;
  parameter B = 1'h1;

  reg cur_state, nxt_state;
  reg [1:0] clk_cnt, w_p_cnt;

  always @(*)
  begin
    case(cur_state)

      A:
      begin
        nxt_state = s?B:A;
      end

      B:
      begin
        nxt_state = B;
      end

      default:
      begin
        nxt_state = A;
      end

    endcase
  end

  always @(posedge clk)
  begin
    if(reset)
      cur_state <= A;
    else
      cur_state <= nxt_state;
  end

  always @(posedge clk)
  begin
    if(reset)
      z <= 1'h0;
    else
    begin
      case(cur_state)

        A:
        begin
          z <= 1'h0;
        end

        B:
        begin
          z <= clk_cnt == 2'h2 && ((w_p_cnt == 2'h2 && !w) || (w_p_cnt == 1'h1 && w));
        end

        default:
        begin
          z <= 1'h0;
        end
      endcase
    end
  end

  always @(posedge clk)
  begin
    if(reset)
      clk_cnt <= 1'h0;
    else if(cur_state == A)
      clk_cnt <= 1'h0;
    else if(clk_cnt == 2'h2)
      clk_cnt <= 1'h0;
    else
      clk_cnt <= clk_cnt + 1'h1;
  end

  always @(posedge clk)
  begin
    if(reset)
      w_p_cnt <= 1'h0;
    else if(cur_state == A)
      w_p_cnt <= 1'h0;
    else if(clk_cnt == 2'h2)
      w_p_cnt <= 1'h0;
    else if(w)
      w_p_cnt <= w_p_cnt + 1'h1;
    else
      w_p_cnt <= w_p_cnt;
  end

endmodule

  • 8
    点赞
  • 7
    收藏
    觉得还不错? 一键收藏
  • 1
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值