DOWNLOAD MAIN
;******************************************
; Description:
; Arithmetic Shift DPTR 1 Bit To Right
;
; Entry Requirements:
; DPTR Has Value To Shift Right
;
; On Exit:
;
; Affected:
;
; Stack:
; X Bytes
;
; Comments:
;
UTIL_DPTRASR1
push acc
mov a,dph
mov c,acc.7
rrc a
mov dph,a
mov a,dpl
rrc a
mov dpl,a
pop acc
ret
|