?? faulttst.v
字號:
`timescale 1ns / 100 ps
module fault_strobe;
// declare delays as parameters for ease of modification.
parameter offset=50, wait_strobe=2;
// setup the stobe for the test nodes.
initial
// Specify a startup time of "offset" before strobing test nodes.
#offset
// After a negative clock edge occurs,
// strobe the test nodes after a wait time of "wait_strobe".
forever @(negedge stimulate.clock)
#wait_strobe $fs_strobe( stimulate.vendcoke,
stimulate.vendpepsi, stimulate.vendsoft_drink );
endmodule
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -