代码搜索:initial

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

代码结果 10,000
www.eeworm.com/read/374228/9415417

v loop3.v

module loop3; integer i; initial begin i=0; repeat(4) begin $display ("i=%h",i); i=i+1; end end endmodule
www.eeworm.com/read/374228/9415577

v adder_tp.v

`timescale 1ns/1ns `include "adder4.v" module adder_tp; reg[3:0] a,b; reg cin; wire[3:0] sum; wire cout; integer i,j; adder4 adder(sum,cout,a,b,cin); always #5 cin=~cin; initial begin
www.eeworm.com/read/372505/9507559

v loop2.v

module loop2; integer i; initial begin i=0; while(i
www.eeworm.com/read/372505/9507561

v loop3.v

module loop3; integer i; initial begin i=0; repeat(4) begin $display ("i=%h",i); i=i+1; end end endmodule
www.eeworm.com/read/372505/9507835

v adder_tp.v

`timescale 1ns/1ns `include "adder4.v" module adder_tp; reg[3:0] a,b; reg cin; wire[3:0] sum; wire cout; integer i,j; adder4 adder(sum,cout,a,b,cin); always #5 cin=~cin; initial begin
www.eeworm.com/read/174849/9571986

htm ch11.05.htm

11.5   Procedures and Assignments
www.eeworm.com/read/366119/9831731

c wdt-sleep.c

/* **************************************************************** ** 功能描述: WDT复位将单片机从休眠中唤醒 *************************************************************** */ #include "pic18.h" /* PIC18系列的头文件
www.eeworm.com/read/365596/9853353

a30 startup_i0.a30

;""FILE COMMENT""************************************************************** ; System Name : This program is only for education. ; File Name : startup_i0.a30 ; Contents : Practice 8-A s
www.eeworm.com/read/365528/9858091

a30 startup.a30

;""FILE COMMENT""************************************************************** ; System Name : This program is only for education. ; File Name : startup.a30 ; Contents : startup program
www.eeworm.com/read/365527/9858903

m exa3_35.m

dsolve('Dy=1+y^2') dsolve('Dy=1+y^2 ','y(0)=1') % add an initial condition dsolve('Dy=1+y^2','y(0)=1','v') % find solution to dy/dv