Post Reply 
HP 35s Programming Question
03-07-2022, 05:49 AM (This post was last modified: 03-07-2022 05:53 AM by toml_12953.)
Post: #4
RE: HP 35s Programming Question
(03-07-2022 03:52 AM)Dave Britten Wrote:  That's because in the 35S, and most of its predecessors, there is only one memory space. Smile You can put multiple programs in memory by using multiple labels, each label being a different entry point. So you can either go to the top or bottom of program memory, add a LBL B, and start entering another program.

The 41C and 42S are the only two HP RPN calculators I can think of off the top of my head that use END to partition multiple independent program areas in memory. The unreleased HP 95C was to have something kind of similar, but simpler.

You can't do that. Program A will run right into program B. Example

Code:
LBL A
2
*
LBL B
3
+

If you type

2, XEQ, A, Enter

you'll get 7, not 4. In order to separate programs each one has to have RTN at the end. The following would work:

Code:
LBL A
2
*
RTN
LBL B
3
+
RTN

Tom L
Cui bono?
Find all posts by this user
Quote this message in a reply
Post Reply 


Messages In This Thread
HP 35s Programming Question - Ishtar - 03-06-2022, 09:28 PM
RE: HP 35s Programming Question - toml_12953 - 03-07-2022 05:49 AM
RE: HP 35s Programming Question - Ishtar - 03-07-2022, 09:16 PM



User(s) browsing this thread: 1 Guest(s)