Program Block-systemverilog
systemverilog中的Program Block与module有些类似,但module是基于硬件思想,Program Block纯粹是为了仿真。如果不熟悉program,可以不用program.
The program block serves three basic purposes:
- » It provides an entry point to the execution of testbenches.
- » It creates a scope that encapsulates program-wide data.
- » It provides a syntactic context that specifies scheduling in the Reactive region.
module test(...) int shared; // variable shared by programs p1 and p1
program p1; ...
endprogram
program p2;
...
endprogram // p1 and p2 are implicitly instantiated once in module testendmodule
-
`timescale 1ns/1ps
-
class frame_start;
-
rand byte length = 64'habcdabc101023acd123;
-
rand byte tag_frame_ma;
-
byte Num;//octal number
-
integer Tx_en;
-
task frame();
-
begin
-
if ((length/Num) || (length > tag_frame_ma))
-
$display ("\nReport the Tag frame error length = %d",length);
-
else
-
$display("\nReport Tag frame %d",length);
-
end
-
endtask
-
endclass
-
program sim_top();
-
frame_start new_frame;
-
integer transmission_enable = 0;// Transmission of frame. Frame Tx include data encapulation and Media Access Management
-
task transmit(integer transmission_enable);
-
if (transmission_enable)
-
$display("\n@%g, Frame is ready to transmit",$time);
-
else
-
$display("\n@%g, Frame is not ready now to transmit",$time);
-
endtask
-
initial
-
begin
-
new_frame = new;
-
$display("*******--------*********--------********--------********");
-
#1 transmit(transmission_enable);
-
#1 transmission_enable = 1;
-
#1 transmit(transmission_enable);
-
#1 new_frame.frame();
-
#1 new_frame.randomize();
-
#1 $display("\n@%g, Transmit next frame now...", $time);
-
#1 $display("\n*******--------*********--------********--------********");
-
end
-
endprogram
-
# *******--------*********--------********--------********
-
#
-
# @1, Frame is not ready now to transmit
-
#
-
# @3, Frame is ready to transmit
-
#
-
# Report the Tag frame error length = 35
-
#
-
# @6, Transmit next frame now...
-
#
-
# *******--------*********--------********--------********
【推荐】国内首个AI IDE,深度理解中文开发场景,立即下载体验Trae
【推荐】编程新体验,更懂你的AI,立即体验豆包MarsCode编程助手
【推荐】抖音旗下AI助手豆包,你的智能百科全书,全免费不限次数
【推荐】轻量又高性能的 SSH 工具 IShell:AI 加持,快人一步
· Manus重磅发布:全球首款通用AI代理技术深度解析与实战指南
· 被坑几百块钱后,我竟然真的恢复了删除的微信聊天记录!
· 没有Manus邀请码?试试免邀请码的MGX或者开源的OpenManus吧
· 园子的第一款AI主题卫衣上架——"HELLO! HOW CAN I ASSIST YOU TODAY
· 【自荐】一款简洁、开源的在线白板工具 Drawnix