代码搜索:Loop

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

代码结果 10,000
www.eeworm.com/read/204483/15337650

c fft.c

/* * fft.c * * Version 2.6 by Steve Sampson, Public Domain, November 1988 * * This program produces a Frequency Domain display from the Time Domain * data input; using the Fast Fourier Transform
www.eeworm.com/read/204483/15337658

c pulse.c

/* * pulse.c * * Version 2.6 by Steve Sampson, Public Domain, November 1988 * * This program is used to generate time domain pulse data for fft.c. */ #include #include #def
www.eeworm.com/read/204191/15343478

txt 单片机.txt

Z8279 EQU 0FF82H ; 8279状态/命令口地址 D8279 EQU 0FF80H ; 8279数据口地址 LEDMOD EQU 10H ; 右端输入,8位字符显示 LEDFEQ EQU 38H ; 扫描频率分频系数为18h=24 LEDWRO EQU 90H ; 设定的将要写入的"显示RAM地址", 地
www.eeworm.com/read/203657/15353894

asm init.asm

.title "init.asm" .def init .ref DotP
www.eeworm.com/read/203569/15355654

v clock.v

module clock(clk,clk_1k,mode,change,turn,alert,hour,min,sec, LD_alert,LD_hour,LD_min); input clk,clk_1k,mode,change,turn; output alert,LD_alert,LD_hour,LD_min; output[7:0] hour,min,sec; reg[7:0]
www.eeworm.com/read/202920/15369743

asm dayin2.asm

ORG 0000H LJMP MAIN ORG 0030H MAIN: ; CLR P3.2 ; MOV PCON,#80H MOV TMOD,#20H MOV SCON,#50H MOV TH1,#0E8H MOV TL1,#0E8H SETB T
www.eeworm.com/read/202833/15371860

asm ja01.asm

$DB EP ;$PRINT(C:\Keil\C51\EXAMPLES\ASM\ja01.lst) ;$oj(C:\Keil\C51\EXAMPLES\ASM\ja01.obj) CR EQU 13 LF EQU 10 sf PUBLIC START SAMP SEGMENT CODE RSEG SAMP START: MOV SCON,
www.eeworm.com/read/202833/15371870

asm test.asm

$ep CR EQU 13 LF EQU 10 PUBLIC START SAMP SEGMENT CODE ;ssfs RSEG SAMP START: MOV SCON, #52H MOV TCON, #0D2H MOV TH1, #13 SETB TR1 LOAD: MOV DPTR, #MSG LOOP: CLR A
www.eeworm.com/read/202833/15371947

lst test.lst

MACRO ASSEMBLER A51 宏汇编器 V0.12 周立功单片机发展有限公司 2002. ================== > ================== 2003/04/30 19:26:55 ------------------ List begin ------------------------------------ LOC OB
www.eeworm.com/read/202630/15377514

f axb.f

PARAMETER(N=1024) REAL*8 A(N,N), B(N,N), C(N,N) * DO J = 1, N DO I = 1, N A(I,J) = 1.D0 B(I,J) = 1.D0 C(I,J) = 0.D0 ENDDO