代码搜索:Loop

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

代码结果 10,000
www.eeworm.com/read/492812/6410060

c sine8_intr.c

//sine8_intr.c Sine generation using 8 points, f=Fs/(# of points) //Comm routines and support files included in C6xdskinit.c short loop = 0; short sin_table[8] = {0,707,1000,707,0,-707,-1000,-707
www.eeworm.com/read/492190/6424967

asm passwdwithprocedures.asm

TITLE password .data MSG1 DB "ENTER PASSWORD", 10, 13, "$" MSG2 DB "INCORRECT PASSWORD", 10, 13, "$" MSG3 DB "LOGIN SUCCESSFUL", 10, 13, "$" PASSWD DB "AlPhA35%" USERPASS DB 10 DUP(0) .code
www.eeworm.com/read/492192/6424969

asm passwd3.asm

TITLE password .data MSG1 DB "ENTER PASSWORD", 10, 13, "$" MSG2 DB "INCORRECT PASSWORD", 10, 13, "$" MSG3 DB "LOGIN SUCCESSFUL", 10, 13, "$" PASSWD DB "AlPhA35%" USERPASS DB 10 DUP(0) .code
www.eeworm.com/read/492254/6425602

asm usdelay.asm

.global __DSP28x_usDelay _DSP28x_usDelay: SUB ACC,#1 NOP NOP BF _DSP28x_usDelay,GEQ ;; Loop if ACC >= 0 LRETR
www.eeworm.com/read/492254/6425668

asm usdelay.asm

.global __DSP28x_usDelay _DSP28x_usDelay: SUB ACC,#1 NOP NOP BF _DSP28x_usDelay,GEQ ;; Loop if ACC >= 0 LRETR
www.eeworm.com/read/491885/6428094

asm ex5104.asm

ORG 0000H BEGIN: LJMP START ; ORG 0013H LJMP INT_P ; ORG 0030H START: MOV P1,#0FFH SETB IT1 MOV A,#01H MOV IE,#10000
www.eeworm.com/read/491927/6428598

m qpsk.m

%本程序中时间单位是微秒 %频率单位为MHz %码速率单位是Mb/s global dt df t f N close all %初始化 N=2^14;%总取样点数 L=64;%每码元的采样点数 M=N/L;%码元数 Rb=2;%码率 fc=4;%载频 Rt=1;%占空比 Ts=0.5;%码元宽度 dt=Ts/L;%系统时域采样间隔 df=1/(N*
www.eeworm.com/read/490896/6445237

cpp creattree.cpp

#include #include using namespace std; struct node { int data; struct node *lchild,*rchild; };//定义结点信息 node *CreatTree() { struct node *head=NULL; struct node
www.eeworm.com/read/490513/6446944

asm 电子屏字符显示器.asm

; ************************* ; * 电子屏字符显示器 * ; * "电子设计" * ; * 2001.10.23 * ; ****
www.eeworm.com/read/489590/6466172

cpp queue.cpp

#include "stdafx.h" #include "Queue.h" // // CDataQueue Class // // // Constructor // CDataQueue::CDataQueue(DWORD dwSize, BOOL *phr) : mpBuf(NULL) , mSize(0) , mHead(-1)