Post Reply 
ISG/ISZ switchover
04-17-2021, 08:06 PM (This post was last modified: 04-17-2021 08:27 PM by Matt Agajanian.)
Post: #1
ISG/ISZ switchover
Hi all.

Since ISZ has been replaced with ISG, what is a programming code that is the equivalent of ISZ?

Thanks
Find all posts by this user
Quote this message in a reply
04-17-2021, 11:14 PM
Post: #2
RE: ISG/ISZ switchover
There isn't an exact equivalence.

Pauli
Find all posts by this user
Quote this message in a reply
04-17-2021, 11:40 PM (This post was last modified: 04-17-2021 11:41 PM by Matt Agajanian.)
Post: #3
RE: ISG/ISZ switchover
In that case, is there a programming trick?

I’m thinking something like this:

Say you want to loop five times:

Place 0.00400 in the loop register.

That way 0 to 4 is five times. Thus when ISG increments the loop register to 5, 5 is great than 4 (.004), so the loop would exit without executing the procedure/equation a sixth time.

Logical?
Find all posts by this user
Quote this message in a reply
04-17-2021, 11:44 PM
Post: #4
RE: ISG/ISZ switchover
If you just want to execute a loop n times, wouldn't you be using DSZ, not ISZ? In that case, you can use DSE instead of DSZ:

Code:
5
STO 00
LBL 00
[...]
DSE 00
GTO 00
Visit this user's website Find all posts by this user
Quote this message in a reply
04-17-2021, 11:51 PM
Post: #5
RE: ISG/ISZ switchover
True. ISG’s gotta be good for something though. Didn’t want to stuff ISG in the back of a drawer ignored and never to be used.
Find all posts by this user
Quote this message in a reply
04-17-2021, 11:58 PM
Post: #6
RE: ISG/ISZ switchover
I don't see which calc we're talking about; but if it's the 41, Angel's WarpCore module has ISLEX, Increment and Skip if Equal on the value in X.

http://WilsonMinesCo.com (Lots of HP-41 links at the bottom of the links page, http://wilsonminesco.com/links.html )
Visit this user's website Find all posts by this user
Quote this message in a reply
04-18-2021, 12:59 AM
Post: #7
RE: ISG/ISZ switchover
(04-17-2021 11:51 PM)Matt Agajanian Wrote:  True. ISG’s gotta be good for something though. Didn’t want to stuff ISG in the back of a drawer ignored and never to be used.

You use ISG when you need to count up, not down. But DSE saves a few bytes if you just want to execute a loop n times, and don't care what the value of the loop counter is. (Or if you specifically need it to be n, n-1, ..., 2, 1.)

So if the loop counter should go from 5 to 1, use 5 STO 00 ... DSE 00; and if the loop counter should go from 1 to 5, use 1.005 STO 00 ... ISG 00.
Visit this user's website Find all posts by this user
Quote this message in a reply
04-18-2021, 08:13 PM
Post: #8
RE: ISG/ISZ switchover
(04-17-2021 11:58 PM)Garth Wilson Wrote:  I don't see which calc we're talking about; but if it's the 41, Angel's WarpCore module has ISLEX, Increment and Skip if Equal on the value in X.
If we are talking about the HP-41, then there is the 7ISZ (and the corresponding 7DSZ) from the card reader ROM.

**vp
http://www.series80.org
Find all posts by this user
Quote this message in a reply
Post Reply 




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