代码搜索:Loop
找到约 10,000 项符合「Loop」的源代码
代码结果 10,000
www.eeworm.com/read/262248/11596728
asm sudec.asm
;********************SUDEC********************
;本程序实现对单字节无符号数据块进行降序排列。
;入口参数:数据块首址在SADR中,数据个数在W中。
;出口参数:排好序的数据仍在原数据块中。
;占用资源:W,STATUS,FSR,020H,028H,029H,02AH,02BH,一重堆栈。
IFNDEF
www.eeworm.com/read/262248/11596926
asm mumul.asm
;********************MUMUL********************
;本程序实现多字节无符号数乘法。
;入口参数:被乘数地址在SADR中,乘数地址在DADR中,字节数在CNT中(小于32字节),结果
; 地址在SADRH中。
;出口参数:结果在指定单元中,地址在SADR中,字节数在CNT中。
;占用资源:W,FSR,STATUS,020H~02
www.eeworm.com/read/158346/11623683
lst 060406_2.lst
A51 MACRO ASSEMBLER 060406_2 04/07/2006 10:22:59 PAGE 1
MACRO ASSEMBLER A51 V1.05
OBJECT MODULE PLACED IN 060406_2.OBJ
ASSEMBLE
www.eeworm.com/read/158338/11624934
c 58.c
# include
main( )
{ enum fruit {apple, orange , banana , pineapple , pear };
enum fruit x, y, z, pri ;
int n, loop ;
www.eeworm.com/read/347738/11639308
c 1_3.c
//例:用C语言实现LED发光二极管闪烁程序:
#include
void delay(void);
void main() //主函数
{
loop: P1.0=!P1.0; //对P1.0取反,实现了闪烁的功能。
delay(); //调用延时函数
goto loop; //循环
}
void del
www.eeworm.com/read/261395/11648415
asm shiyan.asm
assume cs:codesg
data segment
db '1975','1976','1977','1978','1979','1980','1981','1982','1983'
db '1984','1985','1986','1987','1988','1989','1990','1991','1992'
db '1993','1994','1995'
d
www.eeworm.com/read/347629/11652778
vhd 76_pid.vhd
library work;
use work.synchro.all;
use work.op_pkg.all;
----------------------------------------------------------------
entity pid is
port (
reset : in bit;
Fsignin :
www.eeworm.com/read/347629/11652813
vhd 19_test_194.vhd
-- Page : 345 -346
--
-- Objective : constancy of for loop bounds
--
-- File Name : test_194.vhd
--
-- Author : Joseph Pick
--
entity Test_194 is
end Test_194;
architecture
www.eeworm.com/read/347629/11652925
vhd 36_gcd.vhd
entity gcd is
port(start: in bit;
clk : in bit;
din : in bit;
xi,yi: in integer;
dout : out bit;
output:out integer);
end gcd;
architecture behavior of gcd is
begin
process
www.eeworm.com/read/347629/11653068
vhd 44_mvl7_functions.vhd
--***************************************************************************
-- VHDL BIT_VECTOR Operations for MVL7 type
--