代码搜索:initial

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

代码结果 10,000
www.eeworm.com/read/318986/13464735

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/318986/13464834

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/318569/13475681

c r8c2c2d_s002_sfr_init.c

/************************************************************************************ * * * System file name : r8c
www.eeworm.com/read/316943/13514083

m sampletest.m

% This is a test program that tests the EZW % matrix X is an example matrix same as Shapiro's paper given X=[63 -34 49 10 7 13 -12 7; -31 23 14 -13 3 4 6 -1; 15 14 3 -12 5 -7 3 9;
www.eeworm.com/read/315835/13535506

c 数据结构3.c

#include void main() { struct childrec/*定义结构体*/ { char initial; /* 姓名首字母 */ int age; /* 年龄 */ int grade; /* 考试成绩 */ }boy,girl;
www.eeworm.com/read/312242/13614528

txt 00readme.txt

FatFs/Tiny-FatFs Module Source Files R0.06 (C)ChaN, 2008 FILES ff.h Common include file for FatFs and application module. ff.c FatFs module. tff.h Com
www.eeworm.com/read/312207/13616595

authors

ejoy : author and maintainer Hu Yong : core developer,font and display driver bug fix Rick Lei : initial freebsd port
www.eeworm.com/read/311535/13629639

c 数据结构3.c

#include void main() { struct childrec/*定义结构体*/ { char initial; /* 姓名首字母 */ int age; /* 年龄 */ int grade; /* 考试成绩 */ }boy,girl;
www.eeworm.com/read/309240/13678044

m projtest.m

function projtest % The goal of these experiments is to see how efficient our algorithm is, % in particular how the number of iterations required scales with the % dimension of the problem. % E
www.eeworm.com/read/308157/13707162

c 数据结构3.c

#include void main() { struct childrec/*定义结构体*/ { char initial; /* 姓名首字母 */ int age; /* 年龄 */ int grade; /* 考试成绩 */ }boy,girl;