Home     Projects     Micro     Tools     Delphi     Developer     Site map
HOME  
 
 
       
Shift DPTR 1 Bit To Right

DOWNLOAD    MAIN
;******************************************
;  Description:
;	Shift DPTR 1 Bit To Right
;
;  Entry Requirements:
;	DPTR Has Value To Shift Right
;
;  On Exit:
;	DPTR = DPTR >> 1
;
;  Affected:
;	PSW.CY, DPTR
;
;  Stack:
;	1 Bytes
;
;  Comments:
;	None
;
UTIL_DPTRSHR1	
		push	acc
		clr	c
		mov	a,dph
		rrc	a
		mov	dph,a
		mov	a,dpl	
		rrc	a
		mov	dpl,a
		pop	acc
		ret

Copyright(c) 2005-2008 sixca.com, All right reserved.
Best view @ 800X600, IE 6.0 up   
Terms of Use  Privacy Policy