代码搜索:Loop
找到约 10,000 项符合「Loop」的源代码
代码结果 10,000
www.eeworm.com/read/255510/12078010
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/341517/12080231
m chap9_5i.m
%Three Loop of Flight Simulator Servo System with Direct Current Motor
clear all;
close all;
%(1)Current loop
L=0.001; %L
www.eeworm.com/read/341317/12093524
asm 数码管显示.asm
ORG 0000H
MAIN: MOV A,#00H
MOV P3,A
MOV A,#06H
MOV P1,A
MOV R1,#00H
CLR C
LOOP: JB P3.1,UP2
CJNE R1,#00H,LOOP2
JMP LOOP
UP2: LCALL DELAY
www.eeworm.com/read/152680/12093830
m chap9_2f.m
%Three Loop of Flight Simulator Servo System with Direct Current Motor
clear all;
close all;
%(1)Current loop
L=0.001; %L
www.eeworm.com/read/340916/12124763
cpp ex3_10.cpp
// Ex3_10.cpp
// Using an infinite for loop to compute an average
#include
using std::cin;
using std::cout;
using std::endl;
int main()
{
double value = 0.0; //
www.eeworm.com/read/340916/12124779
cpp ex3_07.cpp
// Ex3_07.cpp
// Creating a loop with an if and a goto
#include
using std::cin;
using std::cout;
using std::endl;
int main()
{
int i = 0, sum = 0;
const int max = 10;
www.eeworm.com/read/254578/12128901
java labeledwhile.java
public class LabeledWhile {
public static void main(String[] args) {
int i = 0;
outer:
while(true) {
System.out.println("Outer while loop");
while(true) {
i++;
www.eeworm.com/read/152157/12135268
asm asm51.asm
MOV A, #0
Loop:
MOV DPTR, #0
MOVX @DPTR, A
INC DPTR
INC A
MOVX @DPTR, A
INC DPTR
INC A
MOVX @DPTR, A
CALL Delay
www.eeworm.com/read/152157/12135294
asm pic67x.asm
; if you use Microchip's assembler, please indicate the MCU type
; and do not set the CHIP's CONFIG bits in assemble code
; set CONFIG bits in Option\POD setting
; L
www.eeworm.com/read/340681/12139997
asm shizhong3.asm
ORG 0000H
AJMP MAIN
ORG 0003H
LJMP INT0P
ORG 000BH
AJMP CLOCK
ORG 0013H
LJMP INT1P
ORG 0100H
MAIN: MOV SP,#60H
MOV 2BH,#60H
MOV 2CH,#60H
MOV 2DH,#24H
MOV 27H,#0