代码搜索:init
找到约 10,000 项符合「init」的源代码
代码结果 10,000
www.eeworm.com/read/457222/7331579
c init.c
/*
init.c - Initialize an array to zero
*/
#pragma CODE_SECTION(init, "lms_code");
void init(int *ptr, unsigned int N)
{
unsigned int i;
for (i=N; i>0; i--)
www.eeworm.com/read/457219/7331795
c init.c
/*
* GENESIS Copyright (c) 1986, 1990 by John J. Grefenstette
* This program may be freely copied for educational
* and research purposes. All other rights reserved.
*
* file: init.c
www.eeworm.com/read/457219/7332125
&&& da_init.&&&
%
% Initialisation of all variables
%
clear all
more off;
data_loaded=0;
df_name=0;
df_path=0;
df_len=0;
df_ent=0;
output_var=0;
pcs_calculated=0;
pc2d_plot=1;
pc3d_plot1=1;
pc3d_plot2
www.eeworm.com/read/457031/7334958
c init.c
//***********************************************************************
//* *
//* External Variable Definition *
//*
www.eeworm.com/read/456882/7337829
obj init.obj
www.eeworm.com/read/456882/7337834
asm init.asm
.def _Init
.mmregs
.text
_Init:
BSET M40
BSET SXMD
BCLR FRCT
RET
www.eeworm.com/read/456640/7343057
s init.s
/*************************************************************************/
/* */
/* FILE NAME
www.eeworm.com/read/456386/7350051
c init.c
# include
void main()
{
/* 有尺寸 */
/* 一维整形数组初始化 */
int array1[10] = {0, 1, 2, 3, 4, 5, 6, 7, 8, 9};
/* 一维字符型数组初始化 */
char array2[13] = "How are you!"; /* 方式一 */
char arr
www.eeworm.com/read/456343/7351697
gel init.gel
/* set PMST to: MP = OVLY = 1; DROM off, CLKOUT on */
#define PMST 0x1d
#define PMST_VAL 0x00e0
/*#define PMST_VAL 0xffe0 */
/* set wait-state control reg for: 2
www.eeworm.com/read/455144/7377272
s init.s
;------------------------------------------------------------------------/
;Compony: CASIA
;File Name: Init.s
;Description:
;Author: Wjh
;Date: 2005-07-11
;-------------------------