代码搜索:Loop
找到约 10,000 项符合「Loop」的源代码
代码结果 10,000
www.eeworm.com/read/431211/8699736
c f_8_5_ledflash_wdly.c
#include "config.h"
#include "delay.h"
// use delay.h functions
// just flash LED on port RB1
// use this to test if PIC board is alive
void main(void)
{
TRISB1 = 0; // set RB1 as
www.eeworm.com/read/431211/8699969
c ledflash.c
#include "config.h"
// a subroutine that implements a delay via loops
// Note that the compile option used will alter this delay!
// Always use -O compile option
void a_delay(void){
unsi
www.eeworm.com/read/431209/8700226
c f_8_5_ledflash.c
#include "config.h"
// a subroutine that implements a delay via loops
// Note that the compile option used will alter this delay!
// Always use -O compile option
void a_delay(void){
unsi
www.eeworm.com/read/431209/8700240
c f_8_5_ledflash_wdly.c
#include "config.h"
#include "delay.h"
// use delay.h functions
// just flash LED on port RB1
// use this to test if PIC board is alive
void main(void)
{
TRISB1 = 0; // set RB1 as
www.eeworm.com/read/431209/8700488
c ledflash.c
#include "config.h"
// a subroutine that implements a delay via loops
// Note that the compile option used will alter this delay!
// Always use -O compile option
void a_delay(void){
unsi
www.eeworm.com/read/387031/8710980
lkf debug.lkf
-z -q -c -m"./Debug/DM642_LOOP1_BIOS.map" -o"./Debug/DM642_LOOP1_BIOS.out" -w -x -i"e:/CCS6000/c6000/bios/lib" -i"e:/CCS6000/c6000/rtdx/lib" -i"e:/CCS6000/c6000/xdais/lib" -i"e:/CCS6000/c6000/cgtools/
www.eeworm.com/read/387031/8711078
lkv debug.lkv
-z -q -c -m"./Debug/DM642_LOOP1_BIOS.map" -o"./Debug/DM642_LOOP1_BIOS.out" -w -x -i"e:/CCS6000/c6000/bios/lib" -i"e:/CCS6000/c6000/rtdx/lib" -i"e:/CCS6000/c6000/xdais/lib" -i"e:/CCS6000/c6000/cgtools/
www.eeworm.com/read/430866/8721203
c misc.c
#define _MISC_C_
#include
#include "types.h"
#include "board.h"
#include "global.h"
#include "misc.h"
#include "mcu.h"
void Delay4us(void)
{
#if MCU_XTAL_CLK_MHZ>=20
_nop_();
www.eeworm.com/read/386830/8723768
cpp select.cpp
#include
using namespace std;
bool equ_rows(int a[], int b[], int n)//递归
{
if(a[n-1]!=b[n-1]) return false;
else if(n==1) return true;
else equ_rows(a,b,n-1);
}
bool equ_loop(
www.eeworm.com/read/386701/8731520
asm prog0-2.asm
ORG 0000H
START MOV R1,#00H
$1 DJNZ R1,$1
MOV SP,#60H
LOOP MOV P1,#00H
CALL DELAY
MOV P1,#FFH
CALL DELAY
S