代码搜索:initial
找到约 10,000 项符合「initial」的源代码
代码结果 10,000
www.eeworm.com/read/404153/11490995
asm example 4-5.asm
;Example 4 - 5. Modified Direct-I IIR Filter ASM Listing for the TMS320C54x DSP
;***************************************************************
; New IIR Low pass filter design
; Language : C5
www.eeworm.com/read/401363/11558606
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/401363/11558700
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/401210/11561174
lst main.lst
C51 COMPILER V6.23a MAIN 11/14/2002 00:32:15 PAGE 1
C51 COMPILER V6.23a, COMPILATION OF MODULE MAIN
OBJECT MODULE PLACED IN m
www.eeworm.com/read/401210/11561181
c main.c
#include /* special function register declarations */
/* for the intended 8051 derivative */
#include
www.eeworm.com/read/400541/11574693
txt history.txt
** oPcodeR **
history
v1.11
- added support for
FBLD, FBSTP, FLDCW, FSTCW, FSTSW, XCHG
v1.1
- added support for
ADC, ADD, ARPL, BSWAP, IDIV, LDS, LES, LFS, LGS, LSL, LSS, SBB, SF
www.eeworm.com/read/348332/11601288
lnp sanjiao.lnp
"sanjiao.obj",
"key.obj",
"delay.obj",
"Port_Initial.obj"
TO "sanjiao"
RAMSIZE(256)
www.eeworm.com/read/261876/11617796
m kalman_update.m
function [xnew, Vnew, loglik, VVnew] = kalman_update(A, C, Q, R, y, x, V, varargin)
% KALMAN_UPDATE Do a one step update of the Kalman filter
% [xnew, Vnew, loglik] = kalman_update(A, C, Q, R, y, x, V
www.eeworm.com/read/261064/11667838
f newtn.f
! newtn - Program to solve a system of nonlinear equations
! using Newton's method. Equations defined by function fnewt.
program newtn
integer*4 MAXnVars, MAXnParams, MAXnStep
para