三段式有限狀態機Verilog代碼
阿新 • • 發佈:2019-02-02
cas 而且 moore 特定 ram 簡寫 color col 轉移 狀態機由狀態寄存器和組合邏輯電路構成,能夠根據控制信號按照預先設定的狀態進行狀態轉移,是協調相關信號動作、完成特定操作的控制中心。有限狀態機簡寫為FSM(Finite State Machine),主要分為2大類:
第一類,若輸出只和狀態有關而與輸入無關,則稱為Moore狀態機。
第二類,輸出不僅和狀態有關而且和輸入有關系,則稱為Mealy狀態。
module FSM( input clk, input clr, input x, output reg z, output reg [1:0] current_state,next_state );//101序列檢測器; //FSM中主要包含現態CS、次態NS、輸出邏輯OL; parameter S0=2‘b00,S1=2‘b01,S2=2‘b11,S3=2‘b10;//狀態編碼,采用格雷編碼方式,S0為IDLE; /*------------------次態和現態的轉換---------------*/ always @(posedge clk or negedge clr) begin if(clr) current_state<=S0; else current_state<=next_state
end /*------------------現態在輸入情況下轉換為次態的組合邏輯---------------*/ always @(current_state or x) begin case(current_state) S0:begin if(x) next_state<=S1; else next_state<=S0; end S1:beginif(x) next_state<=S1; else next_state<=S2; end S2:begin if(x) next_state<=S3; else next_state<=S0; end S3:begin if(x) next_state<=S1; else next_state<=S2; end default:next_state<=S0; endcase end /*------------------現態到輸出的組合邏輯---------------*/ always @(current_state) begin case(current_state)//從S3要變化到S2這一刻; S3:z=1‘b1; default:z=1‘b0; endcase end endmodule
三段式有限狀態機Verilog代碼