代码搜索:initial

找到约 10,000 项符合「initial」的源代码

代码结果 10,000
www.eeworm.com/read/464634/7066962

lst at89c52.lst

C51 COMPILER V8.18 AT89C52 04/26/2009 16:07:33 PAGE 1 C51 COMPILER V8.18, COMPILATION OF MODULE AT89C52 OBJECT MODULE PLACED IN
www.eeworm.com/read/400482/7103362

v 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
www.eeworm.com/read/400482/7103375

v 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,,,"
www.eeworm.com/read/400482/7103376

v mult_tp.v

`timescale 10ns/1ns module mult_tp; reg[7:0] a,b; wire [15:0] out; integer i,j; mult8 m1(out,a,b); initial begin a=0;b=0; for(i=1;i
www.eeworm.com/read/264839/7110925

bak half_add1_tp.v.bak

`timescale 1ns/1ns module half_add1_tp(); reg a,b; wire sum,cout; initial begin a=0;b=0; #10 a=0;b=1; #10 a=1;b=0; #10 a=1;b=1; #10 $stop; end endmodule
www.eeworm.com/read/264839/7110934

bak full_add1_tp.v.bak

`timescale 1ns/1ns module full_add1_tp(); reg a,b,cin; wire sum,cout; initial begin a=0;b=0;cin=0; #10 a=0;b=0;cin=1; #10 a=0;b=1;cin=0; #10 a=0;b=1;cin=1; #10 a=1;b=0;cin=0; #10 a=1
www.eeworm.com/read/296774/7114271

fns cpp.fns

\initial {#} \entry {\code {#assert}}{37} \entry {\code {#cpu}}{36} \entry {\code {#define}}{10} \entry {\code {#elif}}{33} \entry {\code {#else}}{32} \entry {\code {#error}}{38} \entry {\code {#ident
www.eeworm.com/read/267981/7120859

1

[SVCS] DataBase=1 MenuItem=1 Command= Arguments= Environment= RunMinimized=0 QueryComment=1 QueryRevision=1 QueryCheckPoint=1 Initial_Folder=
www.eeworm.com/read/310661/7132811

bas mdl_data.bas

Attribute VB_Name = "Mdl_Data" '数据连接模块 Public PublicStr As String Public AdoRs As New ADODB.Recordset '后添加一个记录集对象 Public AdoRs1 As New ADODB.Recordset '后添加一个记录集对象 Public AdoRs
www.eeworm.com/read/332978/7142314

java initialvalues2.java

//: initialization/InitialValues2.java // Providing explicit initial values. public class InitialValues2 { boolean bool = true; char ch = 'x'; byte b = 47; short s = 0xff; int i = 9