Hello,
I entered the insertion sorting routine as written by Gene Wright in Datafile V26 N4, in both HP 35s (CNA 72102361 and 72102362) to verify if I got the same checksums. They were different compared between them and compared to Gene's. I deleted one instruction at a time backwards until line I015: there, the checksums were exactly the same! The culprit in this case: line I016, putting ‘1’ in the stack. Beginning with this instruction the checksums of both calculators disagreed. You could try and see if you obtain the same behavior:
I001 LBL I ---> CK = 4254
I002 STO K
I003 IP
I004 STO B
I005 ISG K
I006 RCL K
I007 STO I
I008 RCL (I) ---> CK = D522
I009 RCL I
I010 IP
I011 STO J
I012 RCL B
I013 x=y?
I014 GTO I026
I015 RDN ---> CK = 5E0A
I016 1 ---> CK = 0B9E ('61) CK = 8136 ('62)
I017 -
I018 STO I
I019 x<>y
I020 RCL (I)
I021 x<=y?
I022 GTO I027
I023 STO (J)
I024 x<>I
I025 GTO I011
I026 RDN
I027 x<>y
I028 STO (J)
I029 ISG K
I030 GTO I006
I031 RTN
1.- The calculators have different content
2.- I made GTO .. in both before entering the program.
Regards,
Miguel