代码搜索:Loop

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

代码结果 10,000
www.eeworm.com/read/371638/9543834

asm b09.asm

;"模仿式实验"实验九 微型打印机打印字符 ;微打打印"123456" ; 文件名:B09.ASM org 0000h ajmp print org 0030h print: mov a,#30h lcall pr mov a,#31h lcall pr mov
www.eeworm.com/read/371638/9543915

asm b09.asm

;"模仿式实验"实验九 微型打印机打印字符 ;微打打印"123456" ; 文件名:B09.ASM org 0000h ajmp print org 0030h print: mov a,#30h lcall pr mov a,#31h lcall pr mov
www.eeworm.com/read/370938/9574833

s crt0.s

@ crt0.s @ C语言程序执行的第一条指令,并不在main函数中。 @ 当我们生成一个C程序的可执行文件时,编译器总是 @ 在我们的代码前加一段固定的代码——crt0.o,它 @ 是编译器自带的一个文件。此段代码设置C程序的堆 @ 栈等,然后调用main函数。这段代码可以简单到只 @ 有3条指令。 .text .global _start _start: ldr ...
www.eeworm.com/read/174714/9575603

th demo2.th

: demo2 10 0 ( iterate from 0 stopping before 10 ) do i . ( print the loop counter ) loop cr ( add a newline ) ; demo2
www.eeworm.com/read/170501/9802894

lst 1.lst

A51 MACRO ASSEMBLER 1 04/06/2006 23:37:33 PAGE 1 MACRO ASSEMBLER A51 V7.07 OBJECT MODULE PLACED IN 1.OBJ ASSEMBLER INVOKE
www.eeworm.com/read/366183/9826026

vhd 62_gcd_stim.vhd

--**VHDL************************************************************* -- -- SRC-MODULE : TESTBENCH -- NAME : gcd_stim.vhdl -- VERSION : 1.0 -- -- PURPOSE : Testbench for GCD Benchmar
www.eeworm.com/read/366181/9826208

vhd 13_shl.vhd

function SHL( v2 : MVL7_VECTOR ; fill : MVL7 ) return MVL7_VECTOR is variable v1: MVL7_VECTOR (v2'high downto v2'low); variable shift_val: MVL7_VECTOR (v1'high downto v1'low);
www.eeworm.com/read/169651/9847989

c lbn68020.c

/* * lbn68020.c - 32-bit bignum primitives for the 68020+ (0r 683xx) processors. * * Copyright (c) 1995 Colin Plumb. All rights reserved. * For licensing and other legal details, see the file le
www.eeworm.com/read/169616/9849135

asm 静态显示8051程序.asm

;主程序 ORG 0000H AJMP START ORG 30H START: MOV SP,#6FH MOV 65H,#0 MOV 64H,#1 MOV 63H,#2 MOV 62H,#3 MOV 61H,#4 MOV 60H,#5 LCALL DISP SJMP $ DISP: MOV SCON,#00H ;初始化串行口方式0 M
www.eeworm.com/read/365378/9866177

asm vectors.asm

; ; Copyright 2003 by Texas Instruments Incorporated. ; All rights reserved. Property of Texas Instruments Incorporated. ; Restricted rights to use, duplicate or disclose this code are ; grant