Email: Password: Remember Me | Create Account (Free)

Back to Subject List

Old thread has been locked -- no new posts accepted in this thread
???
05/16/02 11:24
Read: times


 
#23031 - RE: depth of push and pop, a method
When using push and pop inside a routine (more than at start and end) I usually keep from making my feeble mind getting me in trouble by doing the following (a tab in my code shown as ............):

mov dptr, #stringpush dpl
push dph ;...................~s1
call display_main_routine
push dpl ;...................~s2
push dph ;..................~s3
call display_subroutine
push dpl ;...................~s4
push dph ;..................~s5
mov dptr, #foo
;execute suboroutine
pop dpl ;....................~s5
pop dph ;....................~s4
pop dpl ;....................~s3
pop dph ;....................`s2
pop dpl ;....................~s1
pop dph ;....................~oops

the tilde (~) allow global searches, the numbering show what registers must match.

In this example you clearly see the error at 5 and 4, 2 and 3, 1 and oops

Erik


List of 10 messages in thread
TopicAuthorDate
depth of push and pop            01/01/70 00:00      
RE: depth of push and pop            01/01/70 00:00      
RE: depth of push and pop            01/01/70 00:00      
RE: depth of push and pop            01/01/70 00:00      
RE: depth of push and pop Rob            01/01/70 00:00      
RE: depth of push and pop, a method            01/01/70 00:00      
RE: depth of push.:to jose,john,rob,erik            01/01/70 00:00      
RE: depth of push.:to jose,john,rob,erik            01/01/70 00:00      
RE: depth of push and pop            01/01/70 00:00      
RE: depth of push and pop, to erik, lawr            01/01/70 00:00      

Back to Subject List