Verilog语法之Task调用
1、任务task的应用
1.1. task的定义
下面展示一些 task的语法
。
task<任务名>;
<端口及数据类型声明语句>
<语句1>
<语句2>
.
.
<语句n>
endtask
2 、用task语法做一个简易的交通指示灯
module traffic_lights;
reg clock,red,amber,green;
parameter on =1, off = 0, red_tics = 350,amber_tics = 30,green_tics = 200;
initial red = off;
initial amber = off;
initial green = off;
always //交通灯初始化
begin
red = on; //开红灯
light(red,red_tics); //调用等待任务
green = on; //开绿灯
light(green,green_tics); //等待
amber = on; //开黄灯
light(amber,amber_tics); //等灯
end
always begin //产生时钟脉冲的always块
#100 clock = 0;
#100 clock = 1;
end
//定义交通灯开启时间的任务
task light(color,tics);
output color;
input [31:0] tics;
begin
repeat(tics) @(posedge clock); //等待tics个时钟的上升沿
color = off;
end
endtask
endmodule