labtest1.v
来自「Manual for DSP sp3 for students who do c」· Verilog 代码 · 共 30 行
V
30 行
// Verilog Test Fixture Template `timescale 1 ns / 1 ps module TEST_gate; // The following code initializes the Global Set Reset (GSR) and Global Three-State (GTS) nets // Refer to the Synthesis and Simulation Design Guide for more information on this process reg GSR; assign glbl.GSR = GSR; reg GTS; assign glbl.GTS = GTS; initial begin GSR = 1; GTS = 0; // GTS is not activated by default #100; // GSR is set for 100 ns GSR = 0; end // Initialize Inputs `ifdef auto_init initial begin end `endif endmodule
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?