代码搜索结果

找到约 10,298 项符合 Monitor 的代码

random_tp.v

`timescale 10ns/1ns module random_tp; integer data; integer i; parameter delay=10; initial $monitor($time,,,"data=%b",data); initial begin for(i=0; i

test1.v

'timescale 1ns/1ns module test1; reg A,B,C; initial begin A = 0; B = 1; C = 0; #100 C = 1; #100 A = 1; B = 0; #100 A = 0; #100 C = 0; #100 $finish; end initial $monitor($time,,,"A=%d

time_dif.v

`timescale 10ns/1ns module time_dif; reg ts; parameter delay=2.6; initial begin #delay ts=1; #delay ts=0; #delay ts=1; #delay ts=0; end initial $monitor($time,,,"

random_tp.v

`timescale 10ns/1ns module random_tp; integer data; integer i; parameter delay=10; initial $monitor($time,,,"data=%b",data); initial begin for(i=0; i

test1.v

'timescale 1ns/1ns module test1; reg A,B,C; initial begin A = 0; B = 1; C = 0; #100 C = 1; #100 A = 1; B = 0; #100 A = 0; #100 C = 0; #100 $finish; end initial $monitor($time,,,"A=%d

time_dif.v

`timescale 10ns/1ns module time_dif; reg ts; parameter delay=2.6; initial begin #delay ts=1; #delay ts=0; #delay ts=1; #delay ts=0; end initial $monitor($time,,,"

monitor.map

PROGRAM "E:\DG128实验系统——修改\9S12DG128B相关例程\infrared_trasmit\bin\Monitor.abs" ********************************************************************************************* TARGET SECTION ---------

monitor.map

PROGRAM "E:\DG128实验系统——修改\9S12DG128B相关例程\demon_dg128\bin\Monitor.abs" ********************************************************************************************* TARGET SECTION --------------

monitor.h

////////////////////////////////////////////////// // //monitor.h // ////////////////////////////////////////////////// #ifndef __MONITOR_INCLUDED__ #define __MONITOR_INCLUDED__ typedef enum

makefile

# The PROGRAM variable should be the name of the final executable PROGRAM = TrafficLight.x # List your .cc-files here SRCS = TrafficLight.cc input_gen.cc monitor.cc TrafficLight_testbench.cc TARGET_