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
|