代码搜索:Loop

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

代码结果 10,000
www.eeworm.com/read/267004/6332919

asm bjkz.asm

;步进电机控制程序 ;************************************************************************** ;主程序 ORG 000H MOV R0,#40H ;暂存键值 START: MOV DPTR,#8FFFH
www.eeworm.com/read/107655/6334226

vhd addmulppgensgn.vhd

------------------------------------------------------------------------------- -- Title : Partial-product generator for signed adder-multiplier -- Project : VHDL Library of Arithmetic Units
www.eeworm.com/read/107655/6334229

vhd mulppgensgn.vhd

------------------------------------------------------------------------------- -- Title : Partial-product generator for signed multiplier -- Project : VHDL Library of Arithmetic Units -----
www.eeworm.com/read/107655/6334307

vhd addmulppgensgn.vhd

------------------------------------------------------------------------------- -- Title : Partial-product generator for signed adder-multiplier -- Project : VHDL Library of Arithmetic Units
www.eeworm.com/read/107655/6334310

vhd mulppgensgn.vhd

------------------------------------------------------------------------------- -- Title : Partial-product generator for signed multiplier -- Project : VHDL Library of Arithmetic Units -----
www.eeworm.com/read/107655/6334387

vhd addmulppgensgn.vhd

------------------------------------------------------------------------------- -- Title : Partial-product generator for signed adder-multiplier -- Project : VHDL Library of Arithmetic Units
www.eeworm.com/read/107655/6334390

vhd mulppgensgn.vhd

------------------------------------------------------------------------------- -- Title : Partial-product generator for signed multiplier -- Project : VHDL Library of Arithmetic Units -----
www.eeworm.com/read/124882/6341158

cpp atom.cpp

/***************************************************** File: ATOM.CPP Copyright 1989 by John M. Dlugosz store strings *****************************************************/ #include "us
www.eeworm.com/read/412871/6351988

asm test.asm

TIME_PARA EQU 4 ORG 0H JMP START START: MOV SP,#60H MOV PSW,#0H MOV A,#(2*TIME_PARA) MOV R2,#0 MOV R3,#0 LOOP: MOV A,R2 ADD A,#01 DA A MOV R2,A MOV A,R3 ADDC A,#0 DA A
www.eeworm.com/read/494049/6387182

asm a8051.asm

; “验证式” 实验一 拆字程序 ;把指定字节的高低位拆开分别存放,多用于显示子程序 ORG 0000H MOV DPTR,#8000H ;指定的字节 MOVX A,@DPTR MOV B,A ;暂存 SWAP A ;交换 ANL A,#0FH ;屏敝高位 INC DPTR MOVX @DPTR,A INC DPTR