// State Machine
// download from: www.pld.com.cn & www.fpga.com.cn
module statmach(clk, in, reset, out);
input clk, in, reset;
output out;
reg out;
reg state;
parameter s0 = 0, s1 = 1;
always @(state)
begin
case (state)
s0:
out = 0;
s1:
out = 1;
default:
out = 0;
endcase
end
always @(posedge clk or posedge reset)
begin
if (reset)
state = s0;
else
case (state)
s0:
state = s1;
s1:
if (in)
state = s0;
else
state = s1;
endcase
end
endmodule
一个同步状态机Verilog HDL: Synchronous State Machine
This is a Verilog example that shows the implementation of a state machine.
The first CASE statement defines the outputs that are dependent on the value of the state machine variable state.
The second CASE statement defines the transitions of state machine and the conditions that control them.
download from: http://www.fpga.com.cn
statem.v
module statem(clk, in, reset, out);
input clk, in, reset;
output [3:0] out;
reg [3:0] out;
reg [1:0] state;
parameter zero=0, one=1, two=2, three=3;
always @(state)
begin
case (state)
zero:
out = 4'b0000;
one:
out = 4'b0001;
two:
out = 4'b0010;
three:
out = 4'b0100;
default:
out = 4'b0000;
endcase
end
always @(posedge clk or posedge reset)
begin
if (reset)
state = zero;
else
case (state)
zero:
state = one;
one:
if (in)
state = zero;
else
state = two;
two:
state = three;
three:
state = zero;
endcase
end
endmodule
用状态机设计的交通灯控制器//
// Copyright (c) 2000 Exemplar Logic Inc. All rights reserved.
//
//
// This is a typical example of a state machine description
// in Verilog HDL.
// Two always statements, one to update the state on a clock plus
// or reset, and one to calculate the next state and
// the outputs in a case statement
//
// This description implements a traffic light controller
//
// download from: www.fpga.com.cn & www.pld.com.cn
//
//
module traffic (clock, reset, sensor1, sensor2,
red1, yellow1, green1, red2, yellow2, green2);
input clock, reset, sensor1, sensor2;
output red1, yellow1, green1, red2, yellow2, green2;
// Define the states. Enumerated type pragma allows Spectrum to chose encoding.
parameter /*exemplar enum ee1 */ st0 = 0, st1 = 1, st2 = 2, st3 = 3,
st4 = 4, st5 = 5, st6 = 6, st7 = 7;
reg [2:0] /* exemplar enum ee1 */ state, nxstate ;
reg red1, yellow1, green1, red2, yellow2, green2;
// Update the state with the next state on the clock edge
// or reset value.
always @(posedge clock or posedge reset)
begin
if (reset)
state = st0 ;
else
state = nxstate;
end
//
// Calculate the next state and the outputs,
// based on the present state and the inputs
//
always @(state or sensor1 or sensor2)
begin
// Default values for the outputs
red1 = 1'b0; yellow1 = 1'b0; green1 = 1'b0;
red2 = 1'b0; yellow2 = 1'b0; green2 = 1'b0;
case (state) /* exemplar full_case */ /* exemplar parallel_case */
st0: begin
green1 = 1'b1;
red2 = 1'b1;
if (sensor2 == sensor1)
nxstate = st1;
else if (~sensor1 & sensor2)
nxstate = st2;
else
nxstate = st0;
end
st1: begin
green1 = 1'b1;
red2 = 1'b1;
nxstate = st2;
end
st2: begin
green1 = 1'b1;
red2 = 1'b1;
nxstate = st3;
end
st3: begin
yellow1 = 1'b1;
red2 = 1'b1;
nxstate = st4;
end
st4: begin
red1 = 1'b1;
green2 = 1'b1;
if (~sensor1 & ~sensor2)
nxstate = st5;
else if (sensor1 & ~sensor2)
nxstate = st6;
else
nxstate = st4;
end
st5: begin
red1 = 1'b1;
green2 = 1'b1;
nxstate = st6;
end
st6: begin
red1 = 1'b1;
green2 = 1'b1;
nxstate = st7;
end
st7: begin
red1 = 1'b1;
yellow2 = 1'b1;
nxstate = st0;
end
endcase
end
endmodule
共2条
1/1 1 跳转至页
Verilog HDL 程序举例--状态机举例:
关键词: Verilog 程序 举例 状态机 reset s
共2条
1/1 1 跳转至页
回复
| 有奖活动 | |
|---|---|
| 2026年“我要开发板活动”第三季,开始了! | |
| 硬核工程师专属补给计划——填盲盒 | |
| “我踩过的那些坑”主题活动——第002期 | |
| 【EEPW电子工程师创研计划】技术变现通道已开启~ | |
| 发原创文章 【每月瓜分千元赏金 凭实力攒钱买好礼~】 | |
| 【EEPW在线】E起听工程师的声音! | |
| 高校联络员开始招募啦!有惊喜!! | |
| 【工程师专属福利】每天30秒,积分轻松拿!EEPW宠粉打卡计划启动! | |
我要赚赏金打赏帖 |
|
|---|---|
| RTOS怎么选?让我来给你答案!被打赏¥15元 | |
| 【S32K3XX】Flash驱动使用被打赏¥26元 | |
| 【FreeRtos】第一个任务的启动过程被打赏¥21元 | |
| 【分享开发笔记,赚取电动螺丝刀】FPB-RA6E2开发板的WDT功能测试被打赏¥22元 | |
| 关于cmakelist特性presets的使用被打赏¥20元 | |
| 【分享开发笔记,赚取电动螺丝刀】M5STACK系列屏幕质量测试程序,竟然有块亮斑?被打赏¥20元 | |
| 【分享开发笔记,赚取电动螺丝刀】快速搭建瑞萨FPB-RA6E2开发板开发环境被打赏¥14元 | |
| 【分享开发笔记,赚取电动螺丝刀】在音频测试中顺序的调整可改变功效被打赏¥18元 | |
| 【分享开发笔记,赚取电动螺丝刀】点阵显示模块及其应用-----献给新年的小礼物被打赏¥22元 | |
| 基于地奇星开发板的数码管模块显示技术被打赏¥23元 | |
我要赚赏金
