What is the stack size?
2009-06-20 by rickwendel763242

Yahoo Groups archive
Archive for 50g.
Index last updated: 2026-03-30 00:59 UTC
Thread
2009-06-20 by rickwendel763242
2009-06-20 by Dave Boyd
> How many numbers can you type in and hit Enter and then retrieve fromLimited only by size of memory, how full memory is (how many programs
> the stack?
2009-06-20 by rickwendel763242
2009-06-20 by vincentgoudreault
>Up to and including the HP-41's, the stack was 4 layer deep (X, Y, Z and T as those were called). Remember that on those calculators, the stack could onlt contain a numerical value.
> I'm slightly confused by this because on my old calculator if I put in for example: 1, enter, 2, enter, 3 enter, and so on more than 5 times it would roll over to the first level of the stack. So, are you saying that their are virtually unlimited levels? This would be good means I like using local variables for the most part and haven't yet seen a need for the newer style called combined local variables which act just like global variables with the exception, that they automatically purge themselves when the program terminates. Please reaffirm this.
>
2009-06-20 by rickwendel763242
2009-06-20 by Juan C.
Hello, Rick learning the command to manipulate the stack is very important if you want to use your calculator efficiently, you may want to check this article:
http://www.hpmuseum.org/cgi-sys/cgiwrap/hpmuseum/articles.cgi?read=731
2009-06-21 by rickwendel763242
2009-06-21 by Don Hart
--- On Sat, 6/20/09, rickwendel763242 <rickwendel763242@...> wrote:
> From: rickwendel763242 <rickwendel763242@...>
> Subject: [50g] Re: What is the stack size?
> To: 50g@yahoogroups.com
> Date: Saturday, June 20, 2009, 7:08 PM
> Thanks a lot Juan!
> My old calculator had the limited stack or registers.
> I'm actively using the stack now in programs with the
> unlimited local variables and will be using the combined
> local variables soon.
>
> Write now I'm trying to figure out how to write a program
> that analyzes a simple CASE statement. Can you check
> out the program in the Rick Wendel folder and see what I'm
> doing wrong?
>
>
>
> ------------------------------------
>
> Yahoo! Groups Links
>
>
> mailto:50g-fullfeatured@yahoogroups.com
>
>
>
2009-06-21 by Don Hart
--- In 50g@yahoogroups.com, Don Hart <ddhart1@...> wrote:
>
>
> I think you have an extra END.
>
> --- On Sat, 6/20/09, rickwendel763242 <rickwendel763242@...> wrote:
>
> > From: rickwendel763242 <rickwendel763242@...>
> > Subject: [50g] Re: What is the stack size?
> > To: 50g@yahoogroups.com
> > Date: Saturday, June 20, 2009, 7:08 PM
> > Thanks a lot Juan!
> > My old calculator had the limited stack or registers.
> > I'm actively using the stack now in programs with the
> > unlimited local variables and will be using the combined
> > local variables soon.
> >
> > Write now I'm trying to figure out how to write a program
> > that analyzes a simple CASE statement. Can you check
> > out the program in the Rick Wendel folder and see what I'm
> > doing wrong?
> >
> >
> >
> > ------------------------------------
> >
> > Yahoo! Groups Links
> >
> >
> > mailto:50g-fullfeatured@yahoogroups.com
> >
> >
> >
>
2009-06-21 by Don Hart
--- In 50g@yahoogroups.com, "Don Hart" <ddhart1@...> wrote:
>
> ...and you need to think in RPN, it's...
>
> A 2 *
> not
> A*2
>
> and it's...
> A 2 /
> not
> A/2
>
> --- In 50g@yahoogroups.com, Don Hart <ddhart1@> wrote:
> >
> >
> > I think you have an extra END.
> >
> > --- On Sat, 6/20/09, rickwendel763242 <rickwendel763242@> wrote:
> >
> > > From: rickwendel763242 <rickwendel763242@>
> > > Subject: [50g] Re: What is the stack size?
> > > To: 50g@yahoogroups.com
> > > Date: Saturday, June 20, 2009, 7:08 PM
> > > Thanks a lot Juan!
> > > My old calculator had the limited stack or registers.
> > > I'm actively using the stack now in programs with the
> > > unlimited local variables and will be using the combined
> > > local variables soon.
> > >
> > > Write now I'm trying to figure out how to write a program
> > > that analyzes a simple CASE statement. Can you check
> > > out the program in the Rick Wendel folder and see what I'm
> > > doing wrong?
> > >
> > >
> > >
> > > ------------------------------------
> > >
> > > Yahoo! Groups Links
> > >
> > >
> > > mailto:50g-fullfeatured@yahoogroups.com
> > >
> > >
> > >
> >
>
2009-06-22 by rickwendel763242