Post Reply 
INV DSZ in its natural habitat
10-15-2021, 04:18 PM
Post: #2
RE: INV DSZ in its natural habitat
I assume these two statements are used to implement the following types of loop (expressed in C syntax), in which case both have their place.

Code:
/* DSZ */
do {
...
} while (--x != 0)

whereas

Code:
/* INV DSZ (or DSNZ) */
while (--x != 0) {
...
}
Find all posts by this user
Quote this message in a reply
Post Reply 


Messages In This Thread
RE: INV DSZ in its natural habitat - BruceH - 10-15-2021 04:18 PM



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