「HDLBits题解」Finite State Machines

本专栏的目的是分享可以通过HDLBits仿真的Verilog代码 以提供参考 各位可同时参考我的代码和官方题解代码 或许会有所收益


题目链接:Fsm1 - HDLBits

module top_module(input clk,input areset,    // Asynchronous reset to state Binput in,output out);//  parameter A=0, B=1; reg state, next_state;always @(*) begin    // This is a combinational always block// State transition logiccase (state) A : next_state = in ? A : B ; B : next_state = in ? B : A ; default : next_state = B ; endcaseendalways @(posedge clk, posedge areset) begin    // This is a sequential always block// State flip-flops with asynchronous resetif (areset) state <= B ; else state <= next_state ;end// Output logicassign out = (state == A) ? 0 : 1 ;endmodule

题目链接:Fsm1s - HDLBits

// Note the Verilog-1995 module declaration syntax here:
module top_module(clk, reset, in, out);input clk;input reset;    // Synchronous reset to state Binput in;output out;//  reg out;// Fill in state name declarationsparameter A = 0, B = 1 ; reg state, nstate;always @(posedge clk) beginif (reset) begin  // Fill in reset logicstate <= B ; out <= 1 ; end else begincase (state)// Fill in state transition logicA : nstate = in ? A : B ; B : nstate = in ? B : A ; default : nstate = B ; endcase// State flip-flopsstate <= nstate;   case (nstate)// Fill in output logicA : out <= 0 ; B : out <= 1 ; default : out <= 1 ; endcaseendendendmodule

题目链接:Fsm2 - HDLBits

module top_module(input clk,input areset,    // Asynchronous reset to OFFinput j,input k,output out); //  parameter OFF=0, ON=1; reg state, nstate;always @(*) begin// State transition logiccase (state) ON : nstate = k ? OFF : ON ; OFF : nstate = j ? ON : OFF ; default : nstate = OFF ; endcaseendalways @(posedge clk, posedge areset) begin// State flip-flops with asynchronous resetif (areset) state <= OFF ; else state <= nstate ; end// Output logicassign out = (state == ON) ? 1 : 0 ;endmodule

题目链接:Fsm2s - HDLBits

module top_module(input clk,input reset,    // Synchronous reset to OFFinput j,input k,output out); parameter OFF=0, ON=1; reg state, nstate;always @(*) begin// State transition logiccase (state) ON : nstate = k ? OFF : ON ; OFF : nstate = j ? ON : OFF ; default : nstate = OFF ;endcaseendalways @(posedge clk) begin// State flip-flops with synchronous resetif (reset) state <= OFF ; else state <= nstate ;end// Output logicassign out = (state == OFF) ? 0 : 1 ;endmodule

题目链接:Fsm3comb - HDLBits

module top_module(input in,input [1:0] state,output [1:0] next_state,output out); //parameter A=0, B=1, C=2, D=3;// State transition logic: next_state = f(state, in)always @ (*) begin case (state) A : next_state = in ? B : A ;B : next_state = in ? B : C ;C : next_state = in ? D : A ;D : next_state = in ? B : C ;endcaseend// Output logic:  out = f(state) for a Moore state machineassign out = (state == D) ? 1 : 0 ;endmodule

题目链接:Fsm3onehot - HDLBits

module top_module(input in,input [3:0] state,output [3:0] next_state,output out
); parameter A=0, B=1, C=2, D=3;// State transition logic: Derive an equation for each state flip-flop.assign next_state[A] = (state[A] & ~in) | (state[C] & ~in) ;assign next_state[B] = (state[A] & in) | (state[B] & in) | (state[D] & in) ;assign next_state[C] = (state[B] & ~in) | (state[D] & ~in) ;assign next_state[D] = (state[C] & in) ;// Output logic: assign out = state[D] ;endmodule

题目链接:Fsm3 - HDLBits

module top_module(input clk,input in,input areset,output out
); parameter A = 0, B = 1, C = 2, D = 3 ; reg [1:0] state, nstate ; // State transition logicalways @(*) begincase (state) A : nstate = in ? B : A ; B : nstate = in ? B : C ; C : nstate = in ? D : A ; D : nstate = in ? B : C ; default : nstate = A ; endcaseend// State flip-flops with asynchronous resetalways @(posedge clk or posedge areset) beginif (areset) state <= A ; else state <= nstate ; end// Output logicassign out = state == D ;endmodule

题目链接:Fsm3s - HDLBits

module top_module(input clk,input in,input reset,output out
); parameter A = 0, B = 1, C = 2, D = 3 ; reg [1:0] state, nstate ; // State transition logicalways @(*) begincase (state) A : nstate = in ? B : A ; B : nstate = in ? B : C ; C : nstate = in ? D : A ; D : nstate = in ? B : C ; default : nstate = A ; endcaseend// State flip-flops with asynchronous resetalways @(posedge clk) beginif (reset) state <= A ; else state <= nstate ; end// Output logicassign out = state == D ;endmodule

题目链接:Exams/ece241 2013 q4 - HDLBits

module top_module (input clk,input reset,input [3:1] s,output fr3,output fr2,output fr1,output dfr
); parameter [2:0] A = 3'd0,   //below s1 B0 = 3'd1,	//s1~s2, and previous level is higherB1 = 3'd2,	//s1~s2, and previous level is lowerC0 = 3'd3,	//s2~s3, and previous level is higherC1 = 3'd4,	//s2~s3, and previous level is lowerD  = 3'd5;	//above s3reg [2:0] state, nstate ; always @(posedge clk) beginif (reset) state <= A ; else state <= nstate ; endalways @ (*) begin case (state) A : nstate = s[1] ? B1 : A ; B0 : nstate = s[2] ? C1 : s[1] ? B0 : A ; B1 : nstate = s[2] ? C1 : s[1] ? B1 : A ; C0 : nstate = s[3] ? D : s[2] ? C0 : B0 ;C1 : nstate = s[3] ? D : s[2] ? C1 : B0 ;  D : nstate = s[3] ? D : C0 ; default :nstate = 3'bxxx ; endcaseend         always @(*) begincase (state) A : {fr3, fr2, fr1, dfr} = 4'b1111 ; B0 : {fr3, fr2, fr1, dfr} = 4'b0111 ; B1 : {fr3, fr2, fr1, dfr} = 4'b0110 ; C0 : {fr3, fr2, fr1, dfr} = 4'b0011 ; C1 : {fr3, fr2, fr1, dfr} = 4'b0010 ; D : {fr3, fr2, fr1, dfr} = 4'b0000 ; default : {fr3, fr2, fr1, dfr} = 4'bxxxx ; endcaseendendmodule

题目链接:Lemmings1 - HDLBits

module top_module(input clk,input areset,    // Freshly brainwashed Lemmings walk left.input bump_left,input bump_right,output walk_left,output walk_right); //  parameter LEFT=0, RIGHT=1 ; reg state, next_state;always @(*) begin// State transition logiccase (state) LEFT : next_state = bump_left ? RIGHT : LEFT ; RIGHT : next_state = bump_right ? LEFT : RIGHT ; default : next_state = LEFT ;endcaseendalways @(posedge clk, posedge areset) begin// State flip-flops with asynchronous resetif (areset) state <= LEFT ; else state <= next_state ; end// Output logicassign walk_left = (state == LEFT);assign walk_right = (state == RIGHT);endmodule

题目链接:Lemmings2 - HDLBits

module top_module(input clk,input areset,    // Freshly brainwashed Lemmings walk left.input bump_left,input bump_right,input ground,output walk_left,output walk_right,output aaah 
);parameter LEFT = 0, RIGHT = 1, FALL_L = 2, FALL_R = 3 ;reg [1:0] state, nstate ; always @(*) begincase (state) LEFT : nstate = !ground ? FALL_L : bump_left ? RIGHT : LEFT ;RIGHT : nstate = !ground ? FALL_R : bump_right ? LEFT : RIGHT ;FALL_L : nstate = ground ? LEFT : FALL_L ; FALL_R : nstate = ground ? RIGHT : FALL_R ;default : nstate = LEFT ;endcaseendalways @(posedge clk or posedge areset) beginif (areset) state <= LEFT ; else state <= nstate ; endassign walk_left = state == LEFT ; assign walk_right = state == RIGHT ;assign aaah = state == FALL_L | state == FALL_R ;endmodule

题目链接:Lemmings3 - HDLBits

module top_module(input clk,input areset,    // Freshly brainwashed Lemmings walk left.input bump_left,input bump_right,input ground,input dig,output walk_left,output walk_right,output aaah,output digging 
);parameter LEFT = 0, RIGHT = 1, DIG_L = 2, DIG_R = 3, FALL_L = 4, FALL_R = 5 ; reg [2:0] state, nstate ; always @ (posedge clk or posedge areset) begin if (areset) state <= LEFT ; else state <= nstate ; endassign {walk_left, walk_right, aaah, digging} = {state == LEFT, state == RIGHT, state == FALL_L | state == FALL_R, state == DIG_L | state == DIG_R} ;always @ (*) begin case (state) LEFT : nstate = !ground ? FALL_L : dig ? DIG_L : bump_left ? RIGHT : LEFT ; RIGHT : nstate = !ground ? FALL_R : dig ? DIG_R : bump_right ? LEFT : RIGHT ; DIG_L : nstate = !ground ? FALL_L : DIG_L ; DIG_R : nstate = !ground ? FALL_R : DIG_R ; FALL_L : nstate = ground ? LEFT : FALL_L ; FALL_R : nstate = ground ? RIGHT : FALL_R ; default : nstate = LEFT ; endcaseend
endmodule

题目链接:Lemmings4 - HDLBits

module top_module(input clk,input areset,    // Freshly brainwashed Lemmings walk left.input bump_left,input bump_right,input ground,input dig,output walk_left,output walk_right,output aaah,output digging 
);parameter LEFT = 0, RIGHT = 1, DIG_L = 2, DIG_R = 3, FALL_L = 4, FALL_R = 5, SPLAT = 6 ; reg [2:0] state, nstate ; reg [6:0] cnt ; always @ (posedge clk or posedge areset) beginif (areset) cnt <= 0 ; else if (state == FALL_L || state == FALL_R) cnt <= cnt + 1 ; else cnt <= 0 ; endalways @ (posedge clk or posedge areset) begin if (areset) state <= LEFT ; else state <= nstate ; endassign {walk_left, walk_right, aaah, digging} = {state == LEFT, state == RIGHT, state == FALL_L || state == FALL_R, state == DIG_L || state == DIG_R} ;always @ (*) begin case (state) LEFT : nstate = !ground ? FALL_L : dig ? DIG_L : bump_left ? RIGHT : LEFT ; RIGHT : nstate = !ground ? FALL_R : dig ? DIG_R : bump_right ? LEFT : RIGHT ; DIG_L : nstate = !ground ? FALL_L : DIG_L ; DIG_R : nstate = !ground ? FALL_R : DIG_R ; FALL_L : begin if (ground) begin if (cnt > 19) nstate = SPLAT ; else nstate = LEFT ; endelse nstate = FALL_L ;endFALL_R : begin if (ground) beginif (cnt > 19) nstate = SPLAT ; else nstate = RIGHT ; endelse nstate = FALL_R ; endSPLAT : nstate = SPLAT ; default : nstate = LEFT ; endcaseend
endmodule

题目链接:Fsm onehot - HDLBits

module top_module(input in,input [9:0] state,output [9:0] next_state,output out1,output out2
);parameter S0 = 0, S1 = 1, S2 = 2, S3 = 3, S4 = 4, S5 = 5, S6 = 6, S7 = 7, S8 = 8, S9 = 9 ; // state assign next_state[S0] = (state[S0] & !in) | (state[S1] & !in) | (state[S2] & !in) | (state[S3] & !in) | (state[S4] & !in) | (state[S7] & !in) | (state[S8] & !in) | (state[S9] & !in) ;assign next_state[S1] = (state[S0] & in) | (state[S8] & in) | (state[S9] & in) ; assign next_state[S2] = state[S1] & in ; assign next_state[S3] = state[S2] & in ; assign next_state[S4] = state[S3] & in ; assign next_state[S5] = state[S4] & in ; assign next_state[S6] = state[S5] & in ; assign next_state[S7] = (state[S6] & in) | (state[S7] & in) ; assign next_state[S8] = state[S5] & !in ; assign next_state[S9] = state[S6] & !in ; //outassign out1 = state[S8] | state[S9] ; assign out2 = state[S7] | state[S9] ; endmodule

题目链接:Fsm ps2 - HDLBits

module top_module(input clk,input [7:0] in,input reset,    // Synchronous resetoutput done
); wire x ; assign x = in[3] ; parameter idle = 0, S1 = 1, S2 = 2, S3 = 3 ; reg [1:0] state, nstate ;// State transition logic (combinational)always @ (*) begin case (state) idle : nstate = x ? S1 : idle ; S1 : nstate = S2 ; S2 : nstate = S3 ; S3 : nstate = x ? S1 : idle ; default : nstate = idle ; endcaseend         // State flip-flops (sequential)always @(posedge clk) beginif (reset) state <= idle ; else state <= nstate ; end // Output logicassign done = (state == S3) ;endmodule

题目链接:Fsm ps2data - HDLBits

module top_module(input clk,input [7:0] in,input reset,    // Synchronous resetoutput [23:0] out_bytes,output done
); wire x ; assign x = in[3] ; parameter idle = 0, S1 = 1, S2 = 2, S3 = 3 ; reg [1:0] state, nstate ;reg [23:0] data ; // State transition logic (combinational)always @ (*) begin case (state) idle : nstate = x ? S1 : idle ; S1 : nstate = S2 ; S2 : nstate = S3 ; S3 : nstate = x ? S1 : idle ; default : nstate = idle ; endcaseend         // State flip-flops (sequential)always @(posedge clk) beginif (reset) beginstate <= idle ; data <= 24'b0 ; endelse beginstate <= nstate ; data <= {data[15:0], in} ; endend // Output logicassign done = (state == S3) ;assign out_bytes = done ? data : 24'b0 ; endmodule

题目链接:Fsm serial - HDLBits

module top_module(input clk,input in,input reset,    // Synchronous resetoutput done
); parameter IDLE = 0, START = 1, RECEIVE = 2, WAIT = 3, STOP = 4 ; reg [2:0] nstate, state ;reg [3:0] i ; always @(posedge clk) beginif (reset) state <= IDLE ; else state <= nstate ; end always @ (*) begin case (state) IDLE : nstate = in ? IDLE : START ; START : nstate = RECEIVE ;RECEIVE : nstate = i == 8 ? (in ? STOP : WAIT) : RECEIVE ; WAIT : nstate = in ? IDLE : WAIT ; STOP : nstate = in ? IDLE : START ; endcaseendalways @ (posedge clk) begin if (reset) begin done <= 0 ; i <= 0 ; endelse case (nstate) RECEIVE : begin done <= 0 ; i <= i + 1 ; endSTOP : begin done <= 1 ; i <= 0 ; enddefault  : begin done <= 0 ; i <= 0 ; endendcaseendendmodule

题目链接:Fsm serialdata - HDLBits

module top_module(input clk,input in,input reset,    // Synchronous resetoutput [7:0] out_byte,output done
); parameter IDLE = 0, START = 1, RECEIVE = 2, WAIT = 3, STOP = 4 ; reg [2:0] nstate, state ;reg [3:0] i ; reg [7:0] data ; assign out_byte = (state == STOP) ? data : 0 ;always @(posedge clk) beginif (reset) state <= IDLE ; else state <= nstate ; end always @(posedge clk) beginif (reset) data <= 0 ; else if (state == STOP) data <= 0 ; else if (nstate == STOP) data <= data ;else data <= {in, data[7:1]} ;endalways @ (*) begin case (state) IDLE : nstate = in ? IDLE : START ; START : nstate = RECEIVE ;RECEIVE : nstate = i == 8 ? (in ? STOP : WAIT) : RECEIVE ; WAIT : nstate = in ? IDLE : WAIT ; STOP : nstate = in ? IDLE : START ; endcaseendalways @ (posedge clk) begin if (reset) begin done <= 0 ; i <= 0 ; endelse case (nstate) RECEIVE : begin done <= 0 ; i <= i + 1 ; endSTOP : begin done <= 1 ; i <= 0 ; enddefault  : begin done <= 0 ; i <= 0 ; endendcaseendendmodule

题目链接:Fsm serialdp - HDLBits

module top_module(input clk,input in,input reset,    // Synchronous resetoutput [7:0] out_byte,output done
); parameter IDLE = 0, START = 1, RECEIVE = 2, WAIT = 3, STOP = 4, CHECK = 5 ; reg [2:0] nstate, state ;reg [3:0] i ; reg [7:0] data ; reg odd_reset;reg odd_reg;wire odd ; always @(posedge clk) beginif (reset) state <= IDLE ; else state <= nstate ; end always @(posedge clk) beginif (reset) data <= 0 ; else if (nstate == RECEIVE) data[i] <= in ; endalways @ (*) begin case (state) IDLE : nstate = in ? IDLE : START ; START : nstate = RECEIVE ;RECEIVE : nstate = i == 8 ? CHECK : RECEIVE ; CHECK : nstate = in ? STOP : WAIT ; WAIT : nstate = in ? IDLE : WAIT ; STOP : nstate = in ? IDLE : START ; endcaseendalways @ (posedge clk) begin if (reset) i <= 0 ; else case (nstate) RECEIVE : i = i + 1 ; STOP : i <= 0 ; default  : i <= 0 ; endcaseendparity u_parity(.clk(clk),.reset(reset | odd_reset),.in(in),.odd(odd));  always @(posedge clk) beginif(reset) odd_reg <= 0;else odd_reg <= odd; endalways @(posedge clk) begincase(nstate)IDLE : odd_reset <= 1;	STOP : odd_reset <= 1;default : odd_reset <= 0;endcaseendassign done = ((state == STOP) && odd_reg);assign out_byte = (done) ? data : 8'b0;endmodule

题目链接:Fsm hdlc - HDLBits

module top_module(input clk,input reset,    // Synchronous resetinput in,output disc, // 0111110output flag, // 01111110output err // 01111111...
);parameter idle = 0, // 0S1 = 1, // 01S2 = 2, // 011S3 = 3, // 0111S4 = 4, // 01111S5 = 5, // 011111S6 = 6, // 0111110S7 = 7, // 0111111S8 = 8, // 01111110S9 = 9 ; // 01111111reg [3:0] nstate, state ; always @ (posedge clk) begin if (reset) state <= idle ; else state <= nstate ; endalways @ (*) begin case (state) idle : nstate = in ? S1 : idle ; S1 : nstate = in ? S2 : idle ; S2 : nstate = in ? S3 : idle ; S3 : nstate = in ? S4 : idle ; S4 : nstate = in ? S5 : idle ; S5 : nstate = in ? S7 : S6 ; S6 : nstate = in ? S1 : idle ;S7 : nstate = in ? S9 : S8 ; S8 : nstate = in ? S1 : idle ; S9 : nstate = in ? S9 : idle ; default : nstate = idle ; endcaseendassign disc = state == S6 ; assign flag = state == S8 ; assign err = state == S9 ; endmodule

题目链接:Exams/ece241 2013 q8 - HDLBits

module top_module (input clk,input aresetn,    // Asynchronous active-low resetinput x,output z // 101 include Overlap
); parameter idle = 0, // 0S1 = 1, // 1S2 = 2 ; // 10 reg [1:0] state, nstate ; always @(posedge clk or negedge aresetn) beginif (!aresetn) state <= idle ; else state <= nstate ; endalways @ (*) begin case (state) idle : nstate = x ? S1 : idle ; S1 : nstate = x ? S1 : S2 ; S2 : nstate = x ? S1 : idle ; default : nstate = idle ;endcaseendassign z = (state == S2 && x) ;endmodule

题目链接:Exams/ece241 2014 q5a - HDLBits

module top_module (input clk,input areset,input x,output z
); parameter A = 0, B = 1, C = 2 ; reg [1:0] state, nstate ; always @(*) begincase (state) A : nstate = x ? B : A ; B : nstate = x ? C : B ; C : nstate = x ? C : B ; default : nstate = A ; endcaseendalways @ (posedge clk or posedge areset) begin if (areset) state <= A ; else state <= nstate ; endassign z = state == B;endmodule

题目链接:Exams/ece241 2014 q5b - HDLBits

module top_module (input clk,input areset,input x,output z
); parameter A = 0, B = 1 ; reg state, nstate ; always @(*) begincase (state) A : nstate = x ? B : A ; B : nstate = B ; default : nstate = A ; endcaseendalways @ (posedge clk or posedge areset) begin if (areset) state <= A ; else state <= nstate ; endassign z = (state == A & x) | (state == B & !x) ;endmodule

题目链接:Exams/2014 q3fsm - HDLBits

module top_module (input clk,input reset,   // Synchronous resetinput s,input w,output z
);parameter A = 0, B = 1 ; reg state, nstate ; reg [2:0] cntw ; reg [1:0] cntn ; always @(posedge clk) beginif (reset) state <= A ; else state <= nstate ; endalways @ (*) begin case (state) A : nstate = s ? B : A ; B : nstate = B ; default : nstate = A ; endcaseendalways @ (posedge clk) begin if (reset) cntw <= 0 ;else if (state == B) cntw <= {cntw[1:0], w} ;endalways @ (posedge clk) beginif (reset) cntn <= 0 ; else if (nstate == B) cntn <= cntn == 3 ? 1 : cntn + 1 ; endassign z = (cntn == 1 && (cntw == 3'b110 || cntw == 3'b101 || cntw == 3'b011)) ;endmodule

题目链接:Exams/2014 q3bfsm - HDLBits

module top_module (input clk,input reset,   // Synchronous resetinput x,output z
);parameter S0 = 0, S1 = 1, S2 = 2, S3 = 3, S4 = 4 ; reg [2:0] state, nstate ; always @(posedge clk) beginif (reset) state <= S0 ; else state <= nstate ; endalways @(*) begin case (state) S0 : nstate = x ? S1 : S0 ; S1 : nstate = x ? S4 : S1 ; S2 : nstate = x ? S1 : S2 ; S3 : nstate = x ? S2 : S1 ; S4 : nstate = x ? S4 : S3 ; default : nstate = S0 ;endcaseendassign z = (state == S3 || state == S4) ;endmodule

题目链接:Exams/2014 q3c - HDLBits

module top_module (input clk,input [2:0] y,input x,output Y0,output z
);reg [2:0] Y ;always @(*) begincase (y)3'b000 : Y <= x ? 3'b001 : 3'b000 ;3'b001 : Y <= x ? 3'b100 : 3'b001 ; 3'b010 : Y <= x ? 3'b001 : 3'b010 ; 3'b011 : Y <= x ? 3'b010 : 3'b001 ; 3'b100 : Y <= x ? 3'b100 : 3'b011 ; endcaseendassign Y0 = Y[0] ; assign z = (y == 3'b011 || y == 3'b100) ;endmodule   

题目链接:Exams/m2014 q6b - HDLBits

module top_module (input [3:1] y,input w,output Y2
);reg [3:1] Y ; assign Y2 = Y[2] ; always @(*) begincase (y)3'b000 : Y = w ? 3'b001 : 3'b000 ; 3'b001 : Y = w ? 3'b011 : 3'b010 ; 3'b010 : Y = w ? 3'b011 : 3'b100 ; 3'b011 : Y = w ? 3'b000 : 3'b101 ; 3'b100 : Y = w ? 3'b011 : 3'b100 ; 3'b101 : Y = w ? 3'b011 : 3'b010 ; endcaseendendmodule

题目链接:Exams/m2014 q6c - HDLBits

module top_module (input [6:1] y,input w,output Y2,output Y4
);assign Y2 = y[1] & ~w ; assign Y4 = (y[2] & w) | (y[3] & w) | (y[5] & w) | (y[6] & w) ; endmodule

题目链接:Exams/m2014 q6 - HDLBits

module top_module (input clk,input reset,     // synchronous resetinput w,output z
);parameter a = 3'b000, b = 3'b001, c = 3'b010, d = 3'b011, e = 3'b100, f = 3'b101 ; reg [2:0] state, nstate ; always @(*) begincase ({state, w}){a, 1'b0} : nstate = b ;{a, 1'b1}:  nstate = a;{b, 1'b0}:  nstate = c;{b, 1'b1}:  nstate = d;{c, 1'b0}:  nstate = e;{c, 1'b1}:  nstate = d;{d, 1'b0}:  nstate = f;{d, 1'b1}:  nstate = a;{e, 1'b0}:  nstate = e;{e, 1'b1}:  nstate = d;{f, 1'b0}:  nstate = c;{f, 1'b1}:  nstate = d;default  :  nstate = a;endcaseendalways @(posedge clk) beginif (reset) state <= a ; else state <= nstate ;endassign z = (state == e) | (state == f) ;endmodule

题目链接:Exams/2012 q2fsm - HDLBits

module top_module (input clk,input reset,     // synchronous resetinput w,output z
);parameter a = 3'b000, b = 3'b001, c = 3'b010, d = 3'b011, e = 3'b100, f = 3'b101 ; reg [2:0] state, nstate ; always @(*) begincase ({state, w}){a, 1'b0} : nstate = a ;{a, 1'b1}:  nstate = b;{b, 1'b0}:  nstate = d;{b, 1'b1}:  nstate = c;{c, 1'b0}:  nstate = d;{c, 1'b1}:  nstate = e;{d, 1'b0}:  nstate = a;{d, 1'b1}:  nstate = f;{e, 1'b0}:  nstate = d;{e, 1'b1}:  nstate = e;{f, 1'b0}:  nstate = d;{f, 1'b1}:  nstate = c;default  :  nstate = a;endcaseendalways @(posedge clk) beginif (reset) state <= a ; else state <= nstate ;endassign z = (state == e) | (state == f) ;endmodule

题目链接:Exams/2012 q2b - HDLBits

module top_module (input [5:0] y,input w,output Y1,output Y3
);assign Y1 = (y[0] && w) ;assign Y3 = (y[1] && ~w) | (y[2] && ~w) | (y[4] && ~w) | (y[5] && ~w) ; endmodule

题目链接:Exams/2013 q2afsm - HDLBits

module top_module (input clk,input resetn,    // active-low synchronous resetinput [3:1] r,   // requestoutput [3:1] g   // grant
); parameter A = 0, B = 1, C = 2, D = 3 ; reg [1:0] state, nstate ;always @ (posedge clk) beginif (!resetn) state <= A ; else state <= nstate ; endalways @ (*) begin case (state) A : nstate = r[1] ? B : r[2] ? C : r[3] ? D : A ; B : nstate = r[1] ? B : A ; C : nstate = r[2] ? C : A ; D : nstate = r[3] ? D : A ; endcaseendassign g[1] = state == B ;assign g[2] = state == C ;assign g[3] = state == D ;endmodule

题目链接:Exams/2013 q2bfsm - HDLBits

module top_module (input clk,input resetn,    // active-low synchronous resetinput x,input y,output f,output g
); parameter A = 0, f1 = 1, tmp0 = 2, tmp1 = 3, tmp2 = 4, g1 = 5, g1p = 6, tmp3 = 7, g0p = 8 ;reg [3:0] state, nstate ;always @(*) begincase (state) A : nstate = resetn ? f1 : A ;f1 : nstate = tmp0 ; tmp0 : nstate = x ? tmp1 : tmp0 ;tmp1 : nstate = ~x ? tmp2 : tmp1 ; tmp2 : nstate = x ? g1 : tmp0 ; g1 : nstate = y ? g1p : tmp3 ; tmp3 : nstate = y ? g1p : g0p ; g1p : nstate = ~resetn ? A : g1p ; g0p : nstate = ~resetn ? A : g0p ; endcaseendalways @(posedge clk) beginif (~resetn) state <= A ; else state <= nstate ; endalways @ (posedge clk) begin case (nstate) f1 : f <= 1 ; g1 : g <= 1 ; tmp3 : g <= 1 ; g1p : g <= 1 ; g0p : g <= 0 ;default : begin f <= 0 ; g <= 0 ; endendcaseendendmodule

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/655527.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

制作OpenSSH 9.6 for openEuler 22.03 LTS的rpm升级包

OpenSSH作为操作系统底层管理平台软件&#xff0c;需要保持更新以免遭受安全攻击&#xff0c;编译生成rpm包是生产环境中批量升级的最佳途径。本文在国产openEuler 22.03 LTS系统上完成OpenSSH 9.6的编译工作。 一、编译环境 1、准备环境 基于vmware workstation发布的x86虚…

知识笔记(一百)———什么是okhttp?

OkHttp简介&#xff1a; OkHttp 是一个开源的、高效的 HTTP 客户端库&#xff0c;由 Square 公司开发和维护。它为 Android 和 Java 应用程序提供了简单、强大、灵活的 HTTP 请求和响应的处理方式。OkHttp 的设计目标是使网络请求变得更加简单、快速、高效&#xff0c;并且支持…

gitee仓库项目迁移到gitlab仓库

背景 之前一直使用gitee代码仓库提交代码&#xff0c;现在需要将gitee仓库中的代码迁移到gitlab中&#xff0c;并保留原有的提交记录。 前提 配置好了本地git&#xff0c;并本地与gitlab仓库已连接。 我这里使用 ssh方式拉去代码&#xff0c;因此需要配置ssh密钥 步骤 也可以直…

剑指offer面试题13 在O(1)时间删除链表结点

考察点 链表知识点 链表的删除正常情况下需要O(n)的时间&#xff0c;因为需要找到待删除结点的前置结点题目 分析 我们都知道链表删除往往需要O(n)遍历链表&#xff0c;找到待删除结点的前置结点&#xff0c;把前置结点的next指针指向待删除结点的后置结点。现在要求O(1)时间…

23种设计模式-结构型模式

1.代理模式 在软件开发中,由于一些原因,客户端不想或不能直接访问一个对象,此时可以通过一个称为"代理"的第三者来实现间接访问.该方案对应的设计模式被称为代理模式. 代理模式(Proxy Design Pattern ) 原始定义是&#xff1a;让你能够提供对象的替代品或其占位符。…

复杂链表的复制

作者简介&#xff1a;大家好&#xff0c;我是smart哥&#xff0c;前中兴通讯、美团架构师&#xff0c;现某互联网公司CTO 联系qq&#xff1a;184480602&#xff0c;加我进群&#xff0c;大家一起学习&#xff0c;一起进步&#xff0c;一起对抗互联网寒冬 学习必须往深处挖&…

在Ubuntu Linux上安装Chrome浏览器的最佳方法

我们可以使用GUI和命令行方法在Ubuntu Linux上安装Google Chrome浏览器&#xff0c;但是&#xff0c;终端是配置Chrome浏览器的最佳方式。在这里&#xff0c;我们讨论如何使用它。 有数十种浏览器&#xff0c;甚至Linux系统如Ubuntu也带有自己的默认浏览器Mozilla Firefox。然…

电磁波的波长与频率是什么关系?

摘要: 电磁波的波长&#xff08;λ&#xff09;与频率&#xff08;f&#xff09;之间的关系可以通过以下公式来表示&#xff1a; f c/λ cλf 其中&#xff1a; c 是光速&#xff0c;即电磁波在真空中的传播速度&#xff0c;约为 3 x 10⁸ 米/秒&#xff08;m/s&#xff09;λ…

2024.1.26每日一题

LeetCode 边权重均等查询 2846. 边权重均等查询 - 力扣&#xff08;LeetCode&#xff09; 题目描述 现有一棵由 n 个节点组成的无向树&#xff0c;节点按从 0 到 n - 1 编号。给你一个整数 n 和一个长度为 n - 1 的二维整数数组 edges &#xff0c;其中 edges[i] [ui, vi,…

三方jar包引入到springboot中 package到jar中正常启动的pom文件怎么写 IDEA

文章目录 场景例子工程引用pom文件&#xff08;打包关键&#xff09;打包后观察 场景 许多时候我们在对接三方的时候&#xff0c;需要下载官方的推荐的SDK&#xff0c;但springboot项目怎么引入额外的三方jar包了&#xff0c;自已通过maven本地坐标的方式尝也不行&#xff0c;…

【-快速录用】2024年大数据经济与社会文化国际学术会议(ICBDESC 2024)

【-快速录用】2024年大数据经济与社会文化国际学术会议(ICBDESC 2024) 2024 International Conference Big Data Economy and Social Culture 一、【会议简介】 随着大数据技术的飞速发展&#xff0c;全球范围内对大数据经济与社会文化的研究愈发深入。为了促进国际间学术交流…

商业标书制作的艺术与科学

在商业世界中&#xff0c;标书不仅是一份文件&#xff0c;它是企业实力和专业精神的体现&#xff0c;是通往成功竞标的敲门砖。制作一份出色的商业标书&#xff0c;就像是在精心策划一场演出&#xff0c;每一个细节都至关重要。今天&#xff0c;就让我们一起探索商业标书制作流…

数据库系统原理总结之——目录

数据库系统原理总结之——目录 资料说明&#xff1a;主要是对数据库系统原理总结&#xff0c;发布的各个章节总结一个目录方便查看和查找 第一章数据库系统概述 第二章 关系数据库 第三章 数据库设计 第四章 SQL 与关系数据库基本操作 第五章 数据库编程 第六章 数据库安…

PageHelper分页插件-以三层架构模型开发为例

文章目录 1、简介2、使用2.1、导入2.1.1、SpringBoot2.1.2、非SpringBoot 2.2、controller2.3、service2.4、mapper ​&#x1f343;作者介绍&#xff1a;双非本科大三网络工程专业在读&#xff0c;阿里云专家博主&#xff0c;专注于Java领域学习&#xff0c;擅长web应用开发、…

智能小程序事件系统——基础交互事件介绍

什么是交互事件 事件是视图层到逻辑层的通讯方式。事件可以将用户的行为反馈到逻辑层进行处理。事件可以绑定在组件上。当达到触发事件&#xff0c;就会执行逻辑层中对应的事件处理函数。事件对象可以携带额外信息&#xff0c;如 id、dataset 和 touches。 事件分类 事件分为…

Shell中正则表达式

1.正则表达式介绍 1、正则表达式---通常用于判断语句中&#xff0c;用来检查某一字符串是否满足某一格式 2、正则表达式是由普通字符与元字符组成 3、普通字符包括大小写字母、数字、标点符号及一些其他符号 4、元字符是指在正则表达式中具有特殊意义的专用字符&#xff0c…

25从零开始用Rust编写nginx,序列化之serde是如何工作的

wmproxy wmproxy已用Rust实现http/https代理, socks5代理, 反向代理, 静态文件服务器&#xff0c;四层TCP/UDP转发&#xff0c;内网穿透&#xff0c;后续将实现websocket代理等&#xff0c;会将实现过程分享出来&#xff0c;感兴趣的可以一起造个轮子 项目地址 国内: https:…

SQL字符串截取函数【简笔记】

MySQL提供了多种字符串函数来处理和截取字符串。下面是一些常用的字符串截取函数及其使用示范&#xff1a; SUBSTRING(str, pos, len) str 是要截取的字符串。pos 是开始截取的位置。len 是截取的长度。 示例: SELECT SUBSTRING(Hello, World!, 8, 5); -- 结果: "World…

实验一:FIRST集

前置知识 1.vector基本操作https://c.biancheng.net/view/6749.html2.set基本操作https://c.biancheng.net/view/7196.html 核心操作 //G文法结构体 struct G {int Vt_number;int Vn_number;int P_number;set<char> Vt;set<char> Vn;char S;vector<string>…

ConcurrentHashMap详解

ConcurrentHashMap详解 大家好&#xff0c;我是免费搭建查券返利机器人赚佣金就用微赚淘客系统3.0的小编&#xff0c;在今天的文章中&#xff0c;我们将深入探讨Java中的一个重要类——ConcurrentHashMap。这是一个在多线程环境下高效操作的线程安全的哈希表&#xff0c;让我们…