On Friday 22 March 2002 10:17, Clinton A. Pierce wrote:
> No no.  That's always fine.  Now dump the stack.  That's where the joy is!

So little faith.... :-)

Well, you don't include dump code, so I'll cobble some together.

TOKBAIL: 
         bsr DUMP
         end


DUMP:    eq I5, 0, BAIL
         restore S0
         print "Str "
         print S0
         print "\n"
         dec I5
         branch DUMP
         
BAIL:
         end

> 
> Stack Dump: (top to bottom)
>     0  Str eleven
>     1  Str ten
>     2  Str nine
>     3  Str eight
>     4  Str seven
>     5  Str six
>     6  Str five
>     7  Str n
>     8  Str
>     9  Str e
>     10  Str ;
> 

one<-- save ( ;boundary)
two<-- save ( ;boundary)
three<-- save ( ;boundary)
four<-- save ( ;boundary)
five<-- save ( ;boundary)
six<-- save ( ;boundary)
seven<-- save ( ;boundary)
eight<-- save ( ;boundary)
nine<-- save ( ;boundary)
ten<-- save ( ;boundary)
eleven<--saved (endproc)
Str eleven
Str ten
Str nine
Str eight
Str seven
Str six
Str five
Str four
Str three
Str two
Str one


-- 
Bryan C. Warnock
[EMAIL PROTECTED]

Reply via email to