HP Forums
(49G) Putting a hexadecimal ZINT in a programme - Printable Version

+- HP Forums (https://www.hpmuseum.org/forum)
+-- Forum: HP Software Libraries (/forum-10.html)
+--- Forum: General Software Library (/forum-13.html)
+--- Thread: (49G) Putting a hexadecimal ZINT in a programme (/thread-4955.html)



(49G) Putting a hexadecimal ZINT in a programme - Gerald H - 10-16-2015 01:42 PM

A programme for the 49G (1.19-6) & 50G to enable entering hexadecimal ZINTs in an uncompiled programme.

This method was suggested by Joe Horn here

http://www.hpmuseum.org/forum/thread-4918.html

many thanks to him.

For integer input, eg

19530818

the programme returns a string beginning with "NIBHEX " & then the form in which the hexadecimal ZINT is stored in the calculator, in this case

"NIBHEX 41620D00002440A210"

The content of the string can now be inserted in an uncompiled programme & on compilation will appear in the programme as the hexadecimal ZINT corresponding to the original decimal ZINT.

eg On compiling the string

"NIBHEX 41620D00002440A210
@"

you will find

12:0442

on the stack, the correct form for decimal 19530818 as a hexadecimal ZINT.

I dub the programme

Z2NHZ

Code:

::
  CK1&Dispatch
  # FF
  ::
    FPTR2 ^Z>ZH
    FPTR 2 A5
    "NIBHEX "
    SWAP&$
  ;
;