代码搜索:Loop
找到约 10,000 项符合「Loop」的源代码
代码结果 10,000
www.eeworm.com/read/471622/6887201
asm smg3.asm
;程序:SMG3.ASM
START: MOV R0, #0
MOV DPTR, #TABLE
LOOP: ACALL DISPLAY
INC R0
CJNE R0,
www.eeworm.com/read/471639/6887676
asm lab6_1.asm
org 0000h
ljmp main
org 0003h
ljmp int0
org 0013h
ljmp int1
org 00
www.eeworm.com/read/311671/6891608
txt adc.txt
--8-bit analogue to digital converter
--demonstrates use of LOOP and WAIT statements
ENTITY adc8 IS
GENERIC(tconv : TIME := 10 us); --conversion time
PORT(vin : IN REAL RANGE 0.0 TO +5.0; --unipol
www.eeworm.com/read/295520/8156179
sdi extmem.sdi
,,,; Test program for external memory.
,,,; Write data to memory, then read it back.
,,,; The program loops forever.
,,,
,,, org 0
,,,
,,,
0000,90 12 34,loop1,loop1: mov
www.eeworm.com/read/395522/8169499
asm p118.asm
assume cs:codesg
codesg segment
dw 0123H,0456H,0789H,0abcH,0defH,0fedH,0cbaH,0987H
dw 0,0,0,0,0,0,0,0 ;用dw定义8个字型数据,在程序加载后,将取得8个字的
;内存空间,存放这8个数据。我们在后面的程序中将这段
;空间当作栈来使用。
star
www.eeworm.com/read/395522/8169538
asm p288_0.asm
;编程:实现一个子程序setscreen,为显示输出提供如下功能:
;(1) 清屏。
;(2) 设置前景色。
;(3) 设置背景色。
;(4) 向上滚动一行。
;
;入口参数说明:
;(1) 用 ah 寄存器传递功能号:0 表示清屏,1表示设置前景色,2 表示设置背景色,3 表示向上滚动一行;
;(2) 对于2、3号功能,用 al 传送颜色值,(al) ∈{0,1,2,3,4,5, ...
www.eeworm.com/read/395522/8169558
asm p286.asm
;编程:实现一个子程序setscreen,为显示输出提供如下功能:
;(1) 清屏。
;(2) 设置前景色。
;(3) 设置背景色。
;(4) 向上滚动一行。
;
;入口参数说明:
;(1) 用 ah 寄存器传递功能号:0 表示清屏,1表示设置前景色,2 表示设置背景色,3 表示向上滚动一行;
;(2) 对于2、3号功能,用 al 传送颜色值,(al) ∈{0,1,2,3,4,5, ...
www.eeworm.com/read/395522/8169575
asm p97.asm
assume cs:code
code segment
mov ax,0ffffh
mov ds,ax
mov bx,6
mov al,[bx]
mov ah,0
mov dx,0
mov cx,3
s: add dx,ax
loop s
mov ax,4c00h
int 21h
code ends
end
www.eeworm.com/read/395522/8169647
asm p100_p4.asm
;p100 小节 5.3 在Debug中跟踪用loop指令实现的循环程序 的实验程序5.4代码
;
assume cs:code
code segment
mov ax,0ffffh
mov ds,ax
mov bx,6 ;以上,设置ds:bx指向ffff:6
mov al,[bx]
mov ah,0 ;以上,设置(
www.eeworm.com/read/395522/8169653
asm p132_0.asm
assume cs:codesg,ds:datasg
datasg segment
db 'BaSiC'
db 'MinIX'
datasg ends
codesg segment
start: mov ax,datasg
mov ds,ax
mov bx,0
mov cx,5
s: mov al,[bx]