代码搜索:initial
找到约 10,000 项符合「initial」的源代码
代码结果 10,000
www.eeworm.com/read/297875/7991071
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/297703/8002888
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/297703/8002964
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/397558/8038643
s tct.s
;/*************************************************************************/
;/* */
;/* Copyright Mentor Graphics
www.eeworm.com/read/397197/8062647
c main.c
#include
#define uint unsigned int
#define uchar unsigned char
#define RLED P1_0
#define YLED P1_1
uint counter=0; //统计溢出次数
uint TempFlag; //用来标志是否要闪烁
void Initial(vo
www.eeworm.com/read/397197/8062950
c main.c
//cd wxl
#include
#define uint unsigned int
#define uchar unsigned char
#define DELAY 10000
//小灯控端口定义
#define RLED P1_0
#define YLED P1_1
/**********************************
www.eeworm.com/read/397197/8063076
c main.c
//CD WXL
#include
#define uint unsigned int
#define uchar unsigned char
//定义控制灯的端口
#define RLED P1_0 //定义LED1为P10口控制
#define YLED P1_1 //定义LED2为P11口控制
//函数声明
void Delay(uint);
www.eeworm.com/read/296974/8068180
c demo9.c
#include
void initial()
{
INTCON=0X00;
OPTION=0X38;
TRISA=0XFF;
TRISB=0XFF;
TRISD=0X00;
PORTD=0X80;
GIE=1;
INTE=1;
PORTB=PORTB;
RBIE=1;
T0IE=1;
TMR0=250;
}
void m
www.eeworm.com/read/296717/8080529
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