代码搜索:initial
找到约 10,000 项符合「initial」的源代码
代码结果 10,000
www.eeworm.com/read/456603/7343841
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/456603/7343940
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/450798/7476725
c 数据结构3.c
#include
void main()
{
struct childrec/*定义结构体*/
{
char initial; /* 姓名首字母 */
int age; /* 年龄 */
int grade; /* 考试成绩 */
}boy,girl;
www.eeworm.com/read/449694/7498020
c 数据结构3.c
#include
void main()
{
struct childrec/*定义结构体*/
{
char initial; /* 姓名首字母 */
int age; /* 年龄 */
int grade; /* 考试成绩 */
}boy,girl;
www.eeworm.com/read/448636/7528849
m grtheorytest.m
% Test program for GrTheory functions
% Author: Sergiy Iglin
% e-mail: siglin@yandex.ru
% personal page: http://iglin.exponenta.ru
clear all
% select test:
% ntest=1 - grBase
% ntest=2 - gr
www.eeworm.com/read/448535/7531526
m hmmab.m
function [alpha,beta,f] = hmmab(y,HMM)
%
% Compute the forward and backward probabilities for the model HMM
% and the output probabilities
% function [alpha,beta,f] = hmmab(y,HMM)
%
% y = inp
www.eeworm.com/read/447973/7542706
m kalmandef.m
%%% DynaEst 3.032 10/22/2000
% Copyright (c) 2000 Yaakov Bar-Shalom
%
% KalmanDef, user defined Kalman Filter parameters
% Filter Algorithm Type
FilterAlgorithmFlag = 1;
% 1 stand for ALGORI
www.eeworm.com/read/447524/7549766
pas gr32_reg.pas
unit GR32_Reg;
(* ***** BEGIN LICENSE BLOCK *****
* Version: MPL 1.1
*
* The contents of this file are subject to the Mozilla Public License Version
* 1.1 (the "License"); you may not use t
www.eeworm.com/read/444916/7602755
cc fontoption.cc
/** @file
FontOption - class for widget containing one editable string setting,
while allowing to either type (allowing things like copy/paste) the font
description (name), or use dialog to pick it
www.eeworm.com/read/444774/7607266
c pwm.c
#include
#define uchar unsigned char
#define uint unsigned int
sbit LED10 = P2^0; //要控制的LED 灯
sbit K1= P3^2; //按键K1
uchar scale; //用于保存占空比的输出0 的