代码搜索:loop2
找到约 704 项符合「loop2」的源代码
代码结果 704
www.eeworm.com/read/260043/11749849
asm i2c.asm
;;;;;;;;----------初始化i2c外设
I2COAR0 .equ 0x01b40000
i2cier0 .equ 0x01b40004
i2cstr0 .equ 0x01b40008
i2cclkl0 .equ 0x01b4000c
i2cclkh0 .equ 0x01b40010
i2ccnt0 .equ 0x01b40014
i2cdrr0
www.eeworm.com/read/260037/11750043
asm i2c_write.asm
;;;;;;;;----------初始化i2c外设
I2COAR0 .equ 0x01b40000
i2cier0 .equ 0x01b40004
i2cstr0 .equ 0x01b40008
i2cclkl0 .equ 0x01b4000c
i2cclkh0 .equ 0x01b40010
i2ccnt0 .equ 0x01b40014
i2cdrr0
www.eeworm.com/read/260037/11750049
asm i2c.asm
;;;;;;;;----------初始化i2c外设
I2COAR0 .equ 0x01b40000
i2cier0 .equ 0x01b40004
i2cstr0 .equ 0x01b40008
i2cclkl0 .equ 0x01b4000c
i2cclkh0 .equ 0x01b40010
i2ccnt0 .equ 0x01b40014
i2cdrr0
www.eeworm.com/read/171479/5394849
groovy loop2.groovy
import java.util.ArrayList
class Loop2 {
def array = new ArrayList()
def pos = 0
void push(obj){
array[pos] = obj
pos = pos + 1
}
Object pop(){
pos = pos - 1
return ar
www.eeworm.com/read/108548/15584356
cpp fft-c.cpp
#define SAMPLES 256
#define POWER 8 /* 2 to the 8th power is 256 */
/*
* Fixed constants should be used in the macros for speed.
*
* A cosine wave leads a sine wave by 90 degrees, so o
www.eeworm.com/read/429594/8800936
txt 6.3.2选择排序.txt
DATA EQU 20H
N EQU 8
SSSRT:
MOV DPTR,#LIST
MOV R0,#DATS
MOV R2,#N
CPY:
CLR A
MOVC A,@A+DPTR
MOV @R0,A
INC R0
INC DPTR
DJNZ R2,CPY
LCALL SELSORT
LIST:
DB 53H,87H,12H
www.eeworm.com/read/429594/8801009
txt 6.3.1插入排序.txt
DATA EQU 20H
N EQU 8
ISRT:
MOV DPTR,#LIST
MOV R0,#DATA
MOV R2,#N
CPY:
CLR A
MOVC A,@A+DPTR
MOV @R0,A
INC R0
INC DPTR
DJNZ R2,CPY
LCALL INSSORT
STOP:
LJMP STOP
www.eeworm.com/read/285298/8852478
txt 6.3.2选择排序.txt
DATA EQU 20H
N EQU 8
SSSRT:
MOV DPTR,#LIST
MOV R0,#DATS
MOV R2,#N
CPY:
CLR A
MOVC A,@A+DPTR
MOV @R0,A
INC R0
INC DPTR
DJNZ R2,CPY
LCALL SELSORT
LIST:
DB 53H,87H,12H
www.eeworm.com/read/285298/8852549
txt 6.3.1插入排序.txt
DATA EQU 20H
N EQU 8
ISRT:
MOV DPTR,#LIST
MOV R0,#DATA
MOV R2,#N
CPY:
CLR A
MOVC A,@A+DPTR
MOV @R0,A
INC R0
INC DPTR
DJNZ R2,CPY
LCALL INSSORT
STOP:
LJMP STOP