代码搜索:shift

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

代码结果 10,000
www.eeworm.com/read/395929/2429535

s shift2.s

.code .align 4 ; PA 2.0 format shift right instruction tests. ; ; We could/should test some of the corner cases for register and ; immediate fields. We should also check the assorted field ; sel
www.eeworm.com/read/395929/2429541

s shift3.s

.LEVEL 2.0 .code .align 4 ; PA 2.0 shift right instruction tests. ; ; We could/should test some of the corner cases for register and ; immediate fields. We should also check the assorted field
www.eeworm.com/read/394626/2455243

plg bcd shift.plg

礦ision3 Build Log Project: E:\Program Files\Labcenter Electronics\Proteus 6 Demonstration(2)\10 BCD Shift\BCD Shift.uv2 Project File Date: 07/22/2006
www.eeworm.com/read/394626/2455245

opt bcd shift.opt

### uVision2 Project, (C) Keil Software ### Do not modify ! cExt (*.c) aExt (*.s*; *.src; *.a*) oExt (*.obj) lExt (*.lib) tExt (*.txt; *.h; *.inc) pExt (*.plm) CppX (*.cpp) DaveTm {
www.eeworm.com/read/394626/2455246

lst bcd shift.lst

A51 MACRO ASSEMBLER BCD_SHIFT 07/22/2006 22:25:46 PAGE 1 MACRO ASSEMBLER A51 V8.00 OBJECT MODULE PLACED IN BCD Shift.OBJ ASSEMBLE
www.eeworm.com/read/394626/2455247

asm bcd shift.asm

ORG 00H MOV R7,#03H MOV R0,#30H MOV 30H,#47H MOV 31H,#36H MOV 32H,#21H BRLN: MOV A,R7 ;取字节数至R2中 MOV R2,A ADD A,R0 ;初始化数据指针 MOV R0,A MOV R3,#0 ;工作单元
www.eeworm.com/read/394626/2455248

hex bcd shift.hex

:100000007F037830753047753136753221EFFA2825 :0C001000F87B0018E6C4F6EBD6FBDAF72C :00000001FF
www.eeworm.com/read/394626/2455249

lnp bcd shift.lnp

"BCD Shift.obj" TO "BCD Shift"
www.eeworm.com/read/389922/2530950

h fp_shift.h

/* (c) copyright 1988 by the Vrije Universiteit, Amsterdam, The Netherlands. See the copyright notice in the ACK home directory, in the file "Copyright". */ /* $Header: FP_shift.h,v 1.3 89/07/25
www.eeworm.com/read/388478/2550400

v shift_detect.v

module shift_detect(clk,m1,a); input clk,m1; output a; wire m2; wire m3; wire [4:0] q; assign m2=q[4]; assign m3=q[0]; my_shift_reg (.clk(clk),.d(m1),.q(q)); xor (a,m2,m3); endmodul