代码搜索:Loop
找到约 10,000 项符合「Loop」的源代码
代码结果 10,000
www.eeworm.com/read/243677/12926016
s crt0.s
/*
* Starting point for everything (bootstrap)
*
* Initializes the stack pointer and jumps to main().
*/
#include "regdef.h"
.text
.align 2
.globl _start
.ent _start
_start:
.set noreo
www.eeworm.com/read/142527/12941192
asm tdawave.asm
D_APORT EQU 0E000H ;0832口地址
AL EQU 20H
AH EQU 21H
BX EQU 22H
CX EQU 24H
DX EQU 26H
ORG 2080H
LD SP,#60H
;--
www.eeworm.com/read/243289/12950543
c test_string_set.c
#include
#ifdef __cplusplus
extern "C"
{
#endif
#include "string_set.h"
#include "MyStringSet.h"
#include "MyStringSetEx.h"
#include "mylog.h"
#ifdef __cplusplus
}
#endif
#ifdef WIN32
#inc
www.eeworm.com/read/243168/12957428
log cc_build_debug.log
--------------------------- Loop_store.pjt - Debug ---------------------------
"C:\TI\C6000\CGTOOLS\BIN\cl6x" -g -k -o3 -fr"C:/ti/myprojects/Loop_store" -@"Debug.lkf" "c6xdskinit.c"
[c6xdskinit.c]
www.eeworm.com/read/243168/12958084
asm fircircfunc.asm
;FIRcircfunc.asm ASM function called from C using circular addressing
;A4=newest sample, B4=coefficient address, A6=filter order
;Delay samples organized: x[n-(N-1)]...x[n]; coeff as h(0)...h[N-1]
www.eeworm.com/read/243168/12958371
asm dotp4afunc.asm
;Dotp4afunc.asm Multiply two arrays. Called from dotp4a_init.asm
;A4=x address,B4=y address,A6=count(size of array),B3=return address
.def dotp4afunc ;dot product function
.text
www.eeworm.com/read/243168/12958383
log cc_build_debug.log
--------------------------- Loop_print.pjt - Debug ---------------------------
"C:\TI\C6000\CGTOOLS\BIN\cl6x" -g -k -o3 -fr"C:/ti/myprojects/Loop_print/" -@"Debug.lkf" "c6xdskinit.c"
[c6xdskinit.c
www.eeworm.com/read/243168/12958446
asm sine8_intr.asm
;******************************************************************************
;* TMS320C6x ANSI C Codegen Version 4.10 *
;* Date/Time created: Tue Oct 23 10:47
www.eeworm.com/read/243168/12958451
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/141545/13001202
cpp onep_ini.cpp
#include
class sample
{
int value;
public:
sample(int j) {value = j;} // constructor
int get_value(void) {return value;}
};
void main(void)
{
int loop;