(User.programs) Main: read 184 Item: 184 by _dnickel at hpcvbbs.UUCP Author: [Derek Scott Nickel] Subj: HP 48SX Internals Keyw: internals objects Date: Sat Dec 22 1990 20:51 Lines: 9 Attached to this note is my 'HP 48SX Internals' document, part 1, dated 22 December 1990. It contains descriptions of the data types in the HP 48SX with some examples. (I'd tried to post this earlier, but had problems with Kermit. This time I used Xmodem - much faster!) Derek S. Nickel ---------- Resp: 1 of 1 by _dnickel at hpcvbbs.UUCP Author: [Derek Scott Nickel] Date: Sat Dec 22 1990 21:10 Lines: 5 Also attached is my address comment file (have fun with it). AS you will notice, its sorted by address (how unique!) Derek S. Nickel Type attach to view and queue attached files. [There are 2 files attached to this item.] ***************************************************************************** Ready to download file hp48sx2.doc Press ->> H P 4 8 S X I n t e r n a l s Derek S. Nickel 22 December 1990 ================================================================ Forward ================================================================ This documnent describes some of the internals of the HP 48SX calculator. Its intended audience is people with a good under- standing of the basic HP 48SX who want to explore the internals of the HP 48SX. The information contained here is from a variety of sources: HP-71B Internal Design Specifications, ROM analysis and other posted information. Nothing is perfect. Double check these notes if you plan to use the information that they contain. Send comments and questions to: Derek S. Nickel 15 Maple Lane Walnut Creek, CA 94595-1718 ================================================================ Usage Notes ================================================================ In the examples, when ASC\-> is used, the last four characters are the checksum and are not part of the object. Note that when atomic objects are viewed as a string (via \->ASC or the Memory Scanner) they appear backwards. This is because the string representation is viewed least-significant-nibble to most-significant nibble in left to right order, whereas binary data is viewed in right to left order. Most of the examples list the internal representation as: 12345 6789 ABC DEF0 This corresponds to a memory dump ('48 style) of: xxxxx: 543219876CBA0FED or a HEX dump (VAX/VMS style) of: DE F0 AB C6 78 91 23 45 E#.x.... xxxxx ================================================================ Prologs ================================================================ In the HP 48SX, there are many different data types. Some are common and easy to use: Real Number, Complex Number, Array, String, Binary Integer, List, Directory, Algebraic, Unit, Tagged, Graphic, Backup, Program, Global Name and Local Name. Some are common but hard to create: Library, Library Data and XLIB Name. And some, at the user level are nonexistant: System Binary, Long Real, Long Complex, Character, Linked Array and Code. One thing that all of these data types have in common is a five nibbles header. This header identifies the data type of the data that follows the header. This header is called a prolog. ================================================================ Prologs (by prolog address) ================================================================ Prolog Object Name Type # ------ -------------- ------ 02911 System Binary 20 02933 Real Number 0 02955 Long Real 21 02977 Complex Number 1 0299D Long Complex 22 029BF Character 24 029E8 Array 3,4 02A0A Linked Array 23 02A2C String 2 02A4E Binary Integer 10 02A74 List 5 02A96 Directory 15 02AB8 Algebraic 9 02ADA Unit 13 02AFC Tagged 12 02B1E Graphic 11 02B40 Library 16 02B62 Backup 17 02B88 Library Data 26 02D9D Program 8 02DCC Code 25 02E48 Global Name 6 02E6D Local Name 7 02E92 XLIB Name 14 ================================================================ Prologs (by type number) ================================================================ Type # Prolog Object Name ------ ------ -------------- 0 02933 Real Number 1 02977 Complex Number 2 02A2C String 3 029E8 Real Array 4 029E8 Complex Array 5 02A74 List 6 02E48 Global Name 7 02E6D Local Name 8 02D9D Program 9 02AB8 Algebraic 10 02A4E Binary Integer 11 02B1E Graphic 12 02AFC Tagged 13 02ADA Unit 14 02E92 XLIB Name 15 02A96 Directory 16 02B40 Library 17 02B62 Backup 18 none Command 19 none Function 20 02911 System Binary 21 02955 Long Real 22 0299D Long Complex 23 02A0A Linked Array 24 029BF Character 25 02DCC Code 26 02B88 Library Data 27 other Unknown prolog Commands and Functions can be expressed as either their address or as XLIB Names. For example, DUP is normallay represented by the address 1FB87, but it can also be represented by XLIB 2 269 (02E9E 002 10D). ================================================================ Internal Object Type Numbers ================================================================ The following table lists the internal object types (iTypes) and the objects that they match. These iTypes are used in the internal RPL operations to do argument type checking. Note that if the first nibble is an F, then a second nibble follows. Also, if a operation requires more that one argument, then each argument will be represented as a digit in the Systen Binary that is used for argument type checking. For example, the System Binary number would mean that stack level one must contain a List, stack level two must contain a Real Number and stack level three must contain a Graphic. One nibble iTypes: iType Objects ------ -------------------------------------------------------- <0h> Any <1h> Real Number <2h> Complex Number <3h> String <4h> Array <5h> List <6h> Global Name <7h> Local Name <8h> Program <9h> Algebraic Symbolic (Algebraic or Global Name) Binary Integer Graphic Tagged Unit Two nibble iTypes (starts with F): iType Objects ------ -------------------------------------------------------- XLIB Name <1Fh> System Binary <2Fh> Directory <3Fh> Long Real <4Fh> Long Complex <5Fh> Linked Array <6Fh> Character <7Fh> Code <8Fh> Library <9Fh> Backup Library Data ?? prolog <02BAAh> ?? prolog <02BCCh> ?? prolog <02BEEh> ?? prolog <02C10h> ?? <191BEh> ================================================================ Atomic Data Types ================================================================ Atomic data types are listed after each field description, in parenthesis. Note that some atomic data types are more atomic than others. **** ASCIC **** ASCII counted character strings are represented by length and data fields. ASCII counted character strings are the basis for Global Name, Local Name and Tagged data types, as well as components in other objects. N 2 1 0 +-------------+--------+ | String Data | Length | +-------------+--------+ Length 2 where N = Length/2 + 1. **** ASCII **** ASCII character strings are represented as a sequence of bytes (ASCII characters). The length of the ASCII character string is specified elsewhere. ASCII character strings are called ASCII in the field descriptions. ASCII character strings are the basis for String data types. N 0 +-------------+ | String Data | +-------------+ Length **** ASCIX **** Extended ASCII counted character strings are represented by length and data fields. If the length is zero, only a single length field is present. If the length is non-zero, then there are two identical length fields, one before and one after the string data. Extended ASCII counted character strings are the used in Directory, Library and Backup data types. N N-1 N-2 2 1 0 +--------+-------------+--------+ | Length | String Data | Length | +--------+-------------+--------+ 2 Length 2 where N = Length/2 + 2. Atomic Data Types (cont) Or, if length is zero: 1 0 +----+ | 00 | +----+ 2 **** BCDx **** BCD numbers (binary coded decimal) are represented by a mantissa, sign and exponent fields. These are two kinds of BCD numbers in the HP48SX, 12-form and 15-form BCD numbers, called BCD12 and BCD15 in the field descriptions. Both kinds have several things in common: * A mantissa. Each digit of the number is represented by one nibble in the mantissa. 12-form BCD numbers have a 12 digit mantissa and 15-form BCD numbers have a 15 digit mantissa. There is an implied decimal point after the Most Significant Digit (msd) with respect to the exponent. * A sign nibble. Positive numbers are represented by a 0 and negative numbers are represented by a 9. * An exponent. The exponent is in 10's compement. 12-form BCD numbers have a 3 nibble exponent and 15-form BCD numbers have a 5 digit exponent. 12-form BCD numbers are the basis for Real Number, Complex Number, Real Array and Complex Array data types. 15-form BCD numbers are the basis for Long Real and Long Complex data types. BCD12: 15 14 3 2 0 +--+------------------------+------+ |S | msd.. Mantissa ..lsd | Exp | +--+------------------------+------+ 1 12 3 BCD15: 21 20 5 4 0 +--+------------------------------+----------+ |S | msd... Mantissa ...lsd | Exp | +--+------------------------------+----------+ Atomic Data Types (cont) **** BINx **** Binary integers are represented by a data field. Binary integers are called BINx in the field descriptions (where x = the number of nibbles that the number occupies). Binary integers are the basis for Binary Integers and System Binary data types. N 0 +-------------+ | Binary Data | +-------------+ x where N = x - 1. **** CHAR **** ASCII characters are represented by a one byte (two nibble) data field. ASCII characters are called CHAR in the field descriptions. ASCII characters are the basis for the Character data type. 1 0 +-----------+ | Character | +-----------+ 2 **** CODE **** Machine code is represented as a sequence of nibbles that is the machine code. Machine code is called CODE in the field descriptions. Machine code is the basis for the Code data type. Examples in this document use the HP mneumonics. ================================================================ System Binary (02911) ================================================================ = 02911 (BIN5) = five nibble binary integer (BIN5) There are several tables of System Binary numbers: addr HEX description ------ ------- ------------------------------------------------ 03F8B <2933h> Real Number prolog 03F95 <2977h> Complex Number prolog 03F9F <2A74h> List prolog 03FA9 <2911h> Global Name prolog 03FB3 <2D9Dh> Program prolog 03FBD <2AB8h> Algebraic prolog 03FC7 <2A96h> Directory prolog 03FD1 <2E6Dh> Local Name prolog 03FDB <2955h> Long Real prolog 03FE5 <2ADAh> Unit prolog addr HEX DEC ------ ------ ------ 03FEF <0h> <0d> 03FF9 <1h> <1d> 04003 <2h> <2d> 0400D <3h> <3d> 04017 <4h> <4d> 04021 <5h> <5d> 0402B <6h> <6d> 04035 <7h> <7d> 0403F <8h> <8d> 04049 <9h> <9d> 04053 <10d> 0405D <11d> 04067 <12d> 04071 <13d> 04073 <14d> 04085 <15d> 0408F <10h> <16d> 04099 <11h> <17d> 040A3 <12h> <18d> 040AD <13h> <19d> 040B7 <14h> <20d> 040C1 <15h> <21d> 040CB <16h> <22d> 040D5 <17h> <23d> 040DF <18h> <24d> 040E9 <19h> <25d> 040F3 <1Ah> <26d> 040FD <1Bh> <27d> 04107 <1Ch> <28d> 04111 <1Dh> <29d> 0411B <1Eh> <30d> 04125 <1Fh> <31d> System Binary (cont) 0412F <20h> <32d> 04139 <21h> <33d> 04143 <22h> <34d> 0414D <23h> <35d> 04157 <24h> <36d> 04161 <25h> <37d> 0416B <26h> <38d> 04175 <27h> <39d> 0417F <28h> <40d> 04189 <29h> <41d> 04193 <2Ah> <42d> 0419D <2Bh> <43d> There are several routines to convert between System Binary and other data types. No error checking is performed by these routines. addr name description ------ ------ ------------------------------------------------ 18CEA R\->SB Real Number to System Binary 18DBF SB\->R System Binary to Real Number Example: Create a System Binary with a decimal value of 48. 02911 00030 "1192003000C53E" ASC\-> returns <30h> - or - 48 #18CEAh SYSEVAL returns <30h> ================================================================ Real Number (02933) ================================================================ = 02933 (BIN5) = 12-form BCD number (BCD12) There are several tables of Real Number and Long Real numbers: addr value ------ ---------------- 2A2B4 0 2A2C9 1 2A2DF 2 2A2F3 3 2A308 4 2A3D1 5 2A332 6 2A347 7 2A35C 8 2A371 9 2A386 -1 2A39B -2 2A3B0 -3 2A3C5 -4 2A3DA -5 2A3EF -6 2A404 -7 2A419 -8 2A42E -9 2A443 3.14159265359 2A458 3.14159265358979 (Long Real) 2A472 9.99999999999E499 2A487 -9.99999999999E499 2A49C 1.E-499 2A4B1 -1.E-499 2A4C6 0 (Long Real) 2A4E0 1 (Long Real) 2A4FA 2 (Long Real) 2A514 3 (Long Real) 2A52E 4 (Long Real) 2A548 5 (Long Real) 2A562 .1 (Long Real) 2A57C .5 (Long Real) 2A596 10 (Long Real) There are several routines to convert between Real Number and other data types. No error checking is performed by these routines. addr name description ------ ------ ------------------------------------------------ 2A5B0 LR->R Long Real to Real Number 2A5C1 R->LR Real Number to Long Real Real Number (cont) Example: Create a Real Number with the value of the golden mean: 02933 0161863398875000 "3392000057889330816106AB0" ASC\-> returns 1.61863398875 ================================================================ Long Real (02955) ================================================================ = 02955 (BIN5) = 15-form BCD number (BCD15) ================================================================ Complex Number (02977) ================================================================ = 02977 (BIN5) = 12-form BCD number (BCD12) = 12-form BCD number (BCD12) ================================================================ Long Complex (0299D) ================================================================ = 0299D (BIN5) = 15-form BCD number (BCD15) = 15-form BCD number (BCD15) ================================================================ Character (029BF) ================================================================ = 029BF (BIN5) = ASCII coded character (CHAR) ================================================================ Array (029E8) ================================================================ <#dims>...... = 029EB (BIN5) = number of nibbles remaining (BIN5) = prolog for array elements (BIB5) <#dims> = number of array dimensions (BIN5) = i-th dimension (BIN5) = j-th item (ANY) n = <#dims> m = * * ... * The items in the array are stored in Row Major order (all of the first rows elements are group together, followed by the second row, and so forth.) In normal calculator operations: * Only one and two dimensional arrays are supported. * Only Real Numbers and Complex Numbers are supported as array elements (items). Some assumtions are made about various fields with normal operations: * If is not Real Number, then its assumed to be Complex Number. * If #Dims is not 1, its assumed to be 2. This applies to the Matrix Editor, GET and so forth. But the '48 uses other types of arrays internally. For example, message tables are "Array of String". ================================================================ Linked Array (02A0A) ================================================================ = 02A0A (BIN5) = number of nibbles remaining (BIN5) = undetermined... ================================================================ String (02A2C) ================================================================ = 02A2C (BIN5) = number of nibbles remaining (BIN5) = (-5)/2 byte character string (ASCII) ================================================================ Binary Integer (02A4E) ================================================================ = 02A4E (BIN5) = number of nibbles remaining (BIN5) = binary integer (BINx, where x = - 5) Most Binary Integers have a data size of 16 nibbles or 64 bits ( = 21). But some have a smaller data size. For example, the BYTES command returns a Binary Integer (the checksum) with a data size of 4 nibbles or 16 bits ( = 9), whereas the Hash Table in a Library looks like a very large Binary Integer. ================================================================ List (02A74) ================================================================ ... = 02A74 (BIN5) = i-th object (ANY) = 0312B (BIN5) ================================================================ Directory (02A96) ================================================================ ... = 02A96 (BIN5) = see comments (BIN3) = 00000; end of directory marker (backwards scanned). This is in the position that would have (BIN5) = offset from the beginning of the i'th offset field to the beginning of the i'th object's name. (BIN5) = the name of the i-th object (ASCIX) = the i'th object in the directory (ANY) Comments: The meaning of the field is based on whether or not the directory is the HOME directory. HOME directory: the field contains the number of libraries attached to the HOME directory, including the default, 'hidden' libraries: Library 2, standard functions; Library 1792, flow control statments. Subdirectory: the field contains the library number of the library attached to this subdirectory or 7FF if no library is attached. ================================================================ Algebraic (02AB8) ================================================================ ... = 02AB8 (BIN5) The "..." part is a sequence of objects and operations. = 0312B (BIN5) Example: Create the expression 'A-2'. 02AB8 Algebraic 02E48 01 41 'A' (Global Name) 2A2DE 2 (address in ROM) 1AD09 - 0312B End Marker "8BA2084E201014ED2A209DA1B21303637" \-> returns 'A-2' ================================================================ Unit (02ADA) ================================================================ ...... = 02ADA (BIN5) = the base data, if not Real Number, then will be displayed as UNKNOWN (ANY) = unit component (normally String or Real Number) (ANY) = unit arithmetic indicator. These indicators point to null lists { }, but are interpreted by the OS as simple unit operations (* / and so forth) (BIN5) = 0312B (BIN5) ================================================================ Tagged (02AFC) ================================================================ = 02AFC (BIN5) = the tag (ASCIC) = the tagged object (ANY) Example: Create a the Real Number 1.23456789012 with a tag of "ABC" 02AFC 03 41 42 43 02933 0123456789012000 "CFA20301424343392000021098765432107141" ASC\-> returns ABC: 1.23456789012 ================================================================ Graphic (02B1E) ================================================================ <#rows><#columns> = 02B1E (BIN5) = number of nibbles remaining (BIN5) <#rows> = number of pixel rows (BIN5) <#columns> = number of pixel columns (BIN5) = graphic data, -15 nibbles (BINx) Each pixel in the Graphic is represented by a bit in . The pixels are grouped first by row and then by column. The pixels for each row run for left to right and the bits for those pixels run from least significant bit to most significant bit. Note that each row of pixels is padded to an even number of nibbles. For example: a normal 131 X 64 Graphic requires 34 nibbles (136 bits) per row for a total of 2176 nibbles (not counting the overhead of 20 nibbles). X = <#columns> - 1 Y = <#rows> - 1 0 X +-------------------------+ 0 | | | | | Display | | | Y | | +-------------------------+ M = <#rows> - 1 N = 2*CEIL(<#columns>/8) - 1 N' = unpadded row size ??? = padding N N' 0 +---+-->>--------------------+ |???| | Row 0 +---+--<<--------------------+ |???| | Row 1 +---+-->>--------------------+ : : +---+-->>--------------------+ |???| | Row M +---+--<<--------------------+ ================================================================ Library (02B40) ================================================================ = 02B40 (BIN5) = number of nibbles remaining (BIN5) = Extended ASCII counted character string (ASCIX) = library number (BIN3) = offset to hash table (BIN5) = offset to message table (BIN5) = offset to link table (BIN5) = offset to configuration code (BIN5) : , , , and the rest (in any order) = internal library checksum (BIN4) : ... ...... = 02A4E (Binary Integer) (BIN5) = size of hash table without the prolog (BIN5) = offset into the name table for the first command with an i-character name (BIN5) = size in nibbles of the name table (BIN5) : = ASCII counted character string (ASCIC) = XLIB command number (BIN3) = offset to for XLIB command k (BIN5) This offset is backward pointing. = Array of String. Each array element is a message. : ... = 02A4E (BIN5) = size of link table without the prolog (BIN5) Library (cont) = offset to i-th command in this library (BIN5) = RPL subprogram that performs configuration commands Comments: The hash table and link table are very large Binary Integers. The message table is an Array of String. Example: Unthread part of the stop watch library. The LOAD command loads a memory dump file into port 1 (at address 80000). The notation [...] is the unthreader's way of hiding lengthly data (more than five nibbles). Comments that start with a "!" are generated ny the unthreader, those that start with a ";" are from the comment files. Voyager> load sw-a Voyager> ut 80000 80000: 02B40 ! Library 80005: 01608 ! 5640 nibbles (next RPL at 8160D) 8000A: [...] ! Library name: "SW-A" 80016: 300 ! Library number 768 80019: 00014 ! Hash table at 8002D 8001E: 001F2 ! Message table at 80210 80023: 00107 ! Link table at 8012A 80028: 01543 ! Configuration code at 8156B 8002D: 02A4E ! Hash Table 80032: 000F8 ! 248 nibbles (next at 8012A) 80037: 00000 ! 1 none 8003C: 00000 ! 2 none 80041: 00000 ! 3 none 80046: 00046 ! 4 at 8008C 8004B: 00000 ! 5 none 80050: 00000 ! 6 none 80055: 00085 ! 7 at 800DA 8005A: 00093 ! 8 at 800ED 8005F: 00000 ! 9 none 80064: 00000 ! 10 none 80069: 00000 ! 11 none 8006E: 00000 ! 12 none 80073: 00000 ! 13 none 80078: 00000 ! 14 none 8007D: 00000 ! 15 none 80082: 00000 ! 16 none 80087: 0007B ! 123 nibbles (next at 80102) 8008C: [...] ! DOSW (XLIB 768 0) 80099: [...] ! PALL (XLIB 768 5) 800A6: [...] ! PSP+ (XLIB 768 4) 800B3: [...] ! VALL (XLIB 768 3) 800C0: [...] ! VSP+ (XLIB 768 1) 800CD: [...] ! VSP- (XLIB 768 2) 800DA: [...] ! RESETSW (XLIB 768 7) 800ED: [...] ! RCLSPLIT (XLIB 768 6) Library (cont) 80102: 00076 ! name for XLIB 768 0 at 8008C 80107: 00047 ! name for XLIB 768 1 at 800C0 8010C: 0003F ! name for XLIB 768 2 at 800CD 80111: 0005E ! name for XLIB 768 3 at 800B3 80116: 00070 ! name for XLIB 768 4 at 800A6 8011B: 00082 ! name for XLIB 768 5 at 80099 80120: 00033 ! name for XLIB 768 6 at 800ED 80125: 0004B ! name for XLIB 768 7 at 800DA 80210: 029E8 ! Array 80215: 0007F ! 127 nibbles 8021A: 02A2C ! ...of String 8021F: 00001 ! 1 dimensional 80224: 00003 ! Dim-1 = 3 . . . . . . ! 3 total elements 80229: [...] ! "Invalid SWDAT" 80248: [...] ! "Invalid Split#" 80269: [...] ! "Invalid Environment" 8012A: 02A4E ! Link Table 8012F: 000E1 ! 225 nibbles (next at 80210) 80134: 00167 ! XLIB 768 0 at 8029B 80139: 00183 ! XLIB 768 1 at 802BC 8013E: 001A4 ! XLIB 768 2 at 802E2 80143: 001C5 ! XLIB 768 3 at 80308 80148: 001E1 ! XLIB 768 4 at 80329 8014D: 00202 ! XLIB 768 5 at 8034F 80152: 0021E ! XLIB 768 6 at 80370 80157: 0023F ! XLIB 768 7 at 80396 8015C: 00254 ! XLIB 768 8 at 803B0 80161: 002DE ! XLIB 768 9 at 8043F 80166: 00303 ! XLIB 768 10 at 80469 8016B: 00328 ! XLIB 768 11 at 80493 80170: 0037D ! XLIB 768 12 at 804ED 80175: 0044F ! XLIB 768 13 at 805C4 8017A: 004E7 ! XLIB 768 14 at 80661 8017F: 00500 ! XLIB 768 15 at 8067F 80184: 00514 ! XLIB 768 16 at 80698 80189: 005BC ! XLIB 768 17 at 80745 8018E: 005E1 ! XLIB 768 18 at 8076F 80193: 00605 ! XLIB 768 19 at 80798 80198: 0069D ! XLIB 768 20 at 80835 8019D: 006CD ! XLIB 768 21 at 8086A 801A2: 0072A ! XLIB 768 22 at 808CC 801A7: 00753 ! XLIB 768 23 at 808FA 801AC: 00792 ! XLIB 768 24 at 8093E 801B1: 00819 ! XLIB 768 25 at 809CA 801B6: 00832 ! XLIB 768 26 at 809E8 801BB: 008B1 ! XLIB 768 27 at 80A6C 801C0: 008DA ! XLIB 768 28 at 80A9A 801C5: 00E8C ! XLIB 768 29 at 81051 801CA: 00F55 ! XLIB 768 30 at 8111F 801CF: 00F95 ! XLIB 768 31 at 81164 801D4: 00FBC ! XLIB 768 32 at 81190 801D9: 00FE7 ! XLIB 768 33 at 811C0 801DE: 010AC ! XLIB 768 34 at 8128A 801E3: 0111D ! XLIB 768 35 at 81300 Library (cont) 801E8: 0113A ! XLIB 768 36 at 81322 801ED: 01155 ! XLIB 768 37 at 81342 801F2: 0116A ! XLIB 768 38 at 8135C 801F7: 011EE ! XLIB 768 39 at 813E5 801FC: 0136F ! XLIB 768 40 at 8156B 80201: 01383 ! XLIB 768 41 at 81584 80206: 01396 ! XLIB 768 42 at 8159C 8020B: 013A9 ! XLIB 768 43 at 815B4 8156B: 02D9D ! Program 81570: [...] ! <300h> 8157A: 07709 ; Internal ATTACH to HOME directory (1:System Binary) 8157F: 0312B ! End Marker ================================================================ Backup (02B62) ================================================================ = 02B62 (BIN5) = number of nibbles remaining (BIN5) = the name of the backup (ASCIX) = the backed-up data (ANY) ================================================================ Library Data (02B88) ================================================================ ... = 02B88 (BIN5) =r> = library number (BIN3) = object number (library specific) (BIN2) = the 'hidden' library data (ANY) = 0312B (BIN5) Example: What's in 'MHpar' (MINEHUNT parameter) (EQ Library required)? MINEHUNT STO MHpar \->ASC returns: "88B205C900C010047A20E1B20... ...B21300040" which translates to Library Data 268/0, contents: { Graphic 131 x 64 <1h> <1h> <1h> "20000001000100000... } ================================================================ Program (02D9D) ================================================================ ... = 02D9D (BIN5) The "..." part is a sequence of objects. = 0312B (BIN5) Examples: 1) Write a strictly user-mode program to drop the stack level two object. This operation is called NIP by some people. 02D9D Program 2361E \<< 1FBBD SWAP 1FBD8 DROP 23639 \>> 0312B End Marker "D9D29E1632DBBE18DDF193632B21306A65" ASC\-> returns \<< SWAP DROP \>> 2) Write the same program using internal routines, with error checking (standalone version, non-library). 02D9D Program 18A8D Verify DEPTH >= 2 60F9B drop level two object 0312B End Marker "D9D20D8A81B9F06B2130D01D" ASC\-> returns External External ================================================================ Code (02DCC) ================================================================ = 02DCC (BIN5) = number of nibbles remaining (BIN5) = machine code (-5 nibbles) (CODE) ================================================================ Global Name (02E48) ================================================================ = 02E48 (BIN5) = ASCII counted character string (ASCIC) Example: Create a Global Name called 'GBL'. 02E48 03 47 42 4C "84E20307424C4A205" ASC\-> returns 'GBL' ================================================================ Local Name (02E6D) ================================================================ = 02E6D (BIN5) = ASCII counted character string (ASCIC) Example: Create a Local Name called 'LCL'. 02E6D 03 4C 43 4C "D6E2030C434C4DCA1" ASC\-> returns 'LCL' Executing EVAL at this point will generate an 'EVAL Error: Undefined Local Name'. ================================================================ XLIB Name (02E92) ================================================================ = 02E92 (BIN5) = library number (BIN3) = object number with library (BIN3) Example: The XLIB name for the EQ Library's MINEHUNT is XLIB 268 0 02E92 10C 000 If you have the EQ Library: "29E20C01000FEA7" ASC\-> returns MINEHUNT If you don't: "29E20C01000FEA7" ASC\-> returns XLIB 268 0 Download for hp48sx2.doc succeeded. Ready to download file hp48.ca Press ->> 00100 [DON Ofs2 Ofs1 Ofs0] Disp On, Bit Offset 00101 [Con3 Con2 Con1 Con0] Contrast 00102 [VDIG LID TRIM Con4] Disp Test (VDIG, LID, TRIM should be 0) & Contrast 00104 16 bit hardware CRC 00138 hardware timer 02248 move #100,c.a / config 028FC Enter Machine Code (for RPL Objects) 02911 System Binary 02933 Real Number 02955 Long Real 02977 Complex Number 0299D Long Complex 029BF Character 029E8 Array 02A0A Linked Array 02A2C String 02A4E Binary Integer 02A74 List 02A96 Directory 02AB8 Algebraic 02ADA Unit 02AFC Tagged 02B1E Graphic 02B40 Library 02B62 Backup 02B88 Library Data 02D9D Program 02DCC Code 02E48 Global Name 02E6D Local Name 02E92 XLIB Name 03019 MC: skip next token 0312B End Marker 03130 RPL RETURN 0314C Internal DEPTH -> (1:System Binary) 03188 Internal DUP 031AC Internal DUP2 031D9 Internal DUPN (N:...,1:System Binary) 03223 Internal SWAP 03244 Internal DROP 03258 Internal DROP2 0326E Internal DROPN (1:System Binary) 03295 Internal ROT 032C2 Internal OVER 032E2 Internal PICK (N:...,1:System Binary) 03325 Internal ROLL (N:...,1:System Binary) 0339E Internal ROLLD (N:...,1:System Binary) 03416 MC: garbage collect need 1 stack element 0341D MC: garbage collect need C.A stack elements 0357C MC: push A as new System Binary and continue RPL 03672 MC: restore registers, push A and continue RPL 03A81 True 03AC0 False 03AF2 Internal NOT (1:True/False) 03B06 MC: push False and continue RPL 03B1A MC: push True and continue RPL 03B2E if TOS-1 = TOS (object addresses are the same) -> True/False 03B46 if TOS-1 = False, then DROP TOS, else DROP TOS-1 03B75 if TOS-1 = True, then DROP TOS, else DROP TOS-1 03B97 Internal SAME -> True/False 03CA6 if TOS = 0 (System Binary) -> True/False 03CC7 if TOS != 0 (System Binary) -> True/False 03CE4 if TOS-1 < TOS (System Binary) -> True/False 03D19 if TOS-1 = TOS (System Binary) -> True/False 03D4E if TOS-1 != TOS (System Binary) -> True/False 03D83 if TOS-1 > TOS (System Binary) -> True/False 03DBC Internal + (2:System Binary,1:System Binary) 03DE0 Internal - (2:System Binary,1:System Binary) 03DEF Internal add one (1:System Binary) 03E0E Internal subtract one (1:System Binary) 03E2D Internal add two (1:System Binary) 03E4E Internal subtract two (1:System Binary) 03E6F Internal multiply by 2 (1:System Binary) 03E8E Internal divide by 2 (1:System Binary) 03EB1 Internal AND (2:System Binary,1:System Binary) 03EC2 Internal * (2:System Binary,1:System Binary) 03EF7 Internal / (2:System Binary,1:System Binary) -> (2:rem,1:div) 03F5D MC: pop TOS-1 and TOS (System Binary) -> A.A and C.A 03F8B push Real Number prolog <2933h> 03F95 push Complex Number prolog <2977h> 03F9F push List prolog <2A74h> 03FA9 push Global Name prolog <2911h> 03FB3 push Program prolog <2D9Dh> 03FBD push Algebraic prolog <2AB8h> 03FC7 push Directory prolog <2A96h> 03FD1 push Local Name prolog <2E6Dh> 03FDB push Long Real prolog <2955h> 03FE5 push Unit prolog <2ADAh> 03FEF <0h> 03FF9 <1h> 04003 <2h> 0400D <3h> 04017 <4h> 04021 <5h> 0402B <6h> 04035 <7h> 0403F <8h> 04049 <9h> 04053 0405D 04067 04071 0407B 04085 0408F <10h> 04099 <11h> 040A3 <12h> 040AD <13h> 040B7 <14h> 040C1 <15h> 040CB <16h> 040D5 <17h> 040DF <18h> 040E9 <19h> 040F3 <1Ah> 040FD <1Bh> 04107 <1Ch> 04111 <1Dh> 0411B <1Eh> 04125 <1Fh> 0412F <20h> 04139 <21h> 04143 <22h> 0414D <23h> 04157 <24h> 04161 <25h> 0416B <26h> 04175 <27h> 0417F <28h> 04189 <29h> 04193 <2Ah> 0419D <2Bh> 041A7 Internal OFF 04FB6 Error: Insufficient Memory 04FBB MC: Error: Insufficient Memory 0501E MC: invoke error code in C 05023 MC: invoke error code in A.A 05089 Internal UVAL (1:Unit) 05143 MC: Restore D,B,D1,D0 (C=D0), Clear Carry and continue RPL 05193 Internal + (2:String,1:String) 0521F Internal + (2:List,1:List) 052FA Internal + (2:List,1:Any) 05331 build composite object (N:...,2:System Binary,1:System Binary) 05445 Internal ->PROGRAM (N:...,1:System Binary) 05459 Internal ->LIST (N:...,1:System Binary) 0546D Internal ->ALGEBRAIC (N:...,1:System Binary) 05481 Internal ->UNIT (M:...,1:System Binary) 054AF explode composite object -> (N:...,1:System Binary) 0554C GC & load D,B,D1,D0 (C=D0) / CC 055DF "" 055E9 { } 05622 SIZE of level 2 String -> System Binary 05636 Internal SIZE (1:String) -> System Binary 056B6 Internal GET; object -> N'th address in object 05944 Internal BYTES (non-ROM objects) -> (2:System Binary,1:Binary Integer) 05A03 Internal B->SB (1:Binary Integer) 05B79 MC: allocate string 05BE9 name to string (1:Global Name/Local Name) 05C27 Internal R->C (2:Real Number,1:Real Number) 05D2C Internal C->R (1:Complex Number) 05E81 Deep internal ->TAG (2:Any,1:String) 05EC7 Internal OBJ-> (1:Tagged) 05EEA change prolog of list element one to Global Name 05F0F GC Need 5 Nibbles 05F2E Internal ->TAG (2:Any,1:Global Name/Local Name) 05F42 RPL Garbage Collect 05F61 Internal MEM (nibbles free) -> (1:System Binary) 0613E Garbage Collect & set D 06537 MC: push R0 as new System Binary 06641 MC: pop TOS (System Binary) -> A.A 06657 Internal NEWOB 0670C MC: block copy 0679B MC: save D0,D1,B,D (uses C,D0), clear carry 067D2 MC: restore D,B,D1,D0 (C=D0), clear carry 06806 Let C = Space B/W RSTK & TOS 06A8E Let C.A = C.A / 5 06AD8 A=malloc(C Nibbles) ??? 06AE3 A=malloc(C Nibbles) 06B00 A=malloc(B Nibbles) (C.A=free nibbles) 06E8E No Operation (continue RPL) 06E97 Place next address on the stack, do not execute 06F8E Internal EVAL (1:Any except Algebraic/List/Tagged) 06FB7 iterate loop 06FBC MC: iterate loop 06FD1 Return and execute the next token in this stream 06FD6 MC: return and execute the next token in this stream 0712A if pop TOS = True, then skip next token 0714D skip next token 07152 MC: skip next token and continue RPL 0715C skip next two tokens 07161 MC: skip next two tokens and continue RPL 0716B set return to self 07170 MC: set return to self and continue RPL 0717B MC: set return to A and continue RPL 071A2 loop 071AB exit loop 071B0 MC: exit loop 071BE MC: continue RPL 071C8 if pop TOS = False, then exit loop, else iterate loop 071CD MC: if pop TOS = False, then exit loop, else iterate loop 071E5 exit loop 071EE if pop TOS = False, then skip next two tokens and iterate 07211 MC: skip next two tokens and iterate 07221 push current loop counter as System Binary 072D7 A=orig D0, C=ptr to loop info, D0=ptr to loop counter 07334 next (internal loop) 073C3 for 0 to (TOS)-1 (1:System Binary) 073CE for 1 to (TOS)-1 (1:System Binary) 073DB for 1 to TOS (1:System Binary) 073F7 for TOS to (TOS-1)-1 (2:System Binary,1:System Binary) 074D0 store local variables (N:Any,...,1:List(of Local Names)) 074E4 store local variables (M:Any,...N:Local Name,...1:System Binary) 076AE Internal DETACH from HOME directory (1:System Binary) 07709 Internal ATTACH to HOME directory (1:System Binary) 07D27 Internal STO (2:Any,1:Local Name) 08D5A recall current directory 08D92 Internal HOME 08DD4 if pop TOS = HOME directory -> True/False 0CBAE Error: Nonexistent Alarm 0CBDE MC: Error: Nonexistent Alarm 0CBFA Internal TIME 0CC0E Internal DATE 0CC39 Internal DDAYS 0CC5B Internal DATE+ 0CD2B Internal ->DATE 0CD3F Internal CLKADJ 0CD53 Internal ->TIME 0D2A3 Internal WSLOG 0D304 Internal TSTR 0DDA8 Internal ACKALL 0DDC1 Internal ACK 0DF01 'Alarms' (Global Name) 0DF28 'Alarms' (Global Name) 0E1D8 Convert internal alarm into external alarm 0E235 Recall 'Alarms' list 0E3DF Internal RCLALARM 0E402 Recall N'th Alarm (1:System Binary) -> (Alarm/True,False) 0E47A 'M' (Local Name) 0E483 'N' (Local Name) 0E4A0 'M' (Local Name) 0E4AE 'N' (Local Name) 0E4C1 'M' (Local Name) 0E724 Internal DELALARM 0EAD7 Internal FINDALARM (1:Real Number) 0EB31 Internal FINDALARM (1:List) 0EB81 Internal TICKS 0F33A Internal UNIT 0F34E Internal OBJ-> (1:Unit) 0F371 Internal CONVERT 0F561 Standardize units and then strip units (levels 1,2) 0F584 Internal == (2:Real Number/Unit,1:Real Number/Unit) 0F598 Internal != (2:Real Number/Unit,1:Real Number/Unit) 0F5AC Internal < (2:Real Number/Unit,1:Real Number/Unit) 0F5C0 Internal > (2:Real Number/Unit,1:Real Number/Unit) 0F5D4 Internal <= (2:Real Number/Unit,1:Real Number/Unit) 0F5E8 Internal >= (2:Real Number/Unit,1:Real Number/Unit) 0F5FC Internal ABS (1:Unit) 0F615 Internal NEG (1:Unit) 0F62E Internal SIN (1:Unit) 0F660 Internal COS (1:Unit) 0F674 Internal TAN (1:Unit) 0F6A2 Internal + (2:Real Number/Unit,1:Real Number/Unit) 0F774 Internal - (2:Real Number/Unit,1:Real Number/Unit) 0F792 Internal * (2:Real Number/Unit,1:Real Number/Unit) 0F823 Internal / (2:Real Number/Unit,1:Real Number/Unit) 0F841 Internal INV (1:Unit) 0F878 Internal ^ (2:Real Number/Unit,1:Real Number/Unit) 0F913 Internal SQ (1:Unit) 0F92C Internal sqrt (1:Unit) 0F945 Internal UBASE (1:Unit) 0FB6F Internal MAX (2:Real Number/Unit,1:Real Number/Unit) 0FB8D Internal MIN (2:Real Number/Unit,1:Real Number/Unit) 0FBAB Internal % (2:Unit,1:Real Number) 0FC3C Internal %CH (2:Real Number/Unit,1:Real Number/Unit) 0FCCD Internal %T (2:Real Number/Unit,1:Real Number/Unit) 0FCE6 Internal SIGN (1:Unit) 0FCFA Internal IP (1:Unit) 0FD0E Internal FP (1:Unit) 0FD22 Internal FLOOR (1:Unit) 0FD36 Internal CEIL (1:Unit) 0FD68 Internal RND (2:Unit,1:Real Number) 0FD8B Internal TRNC (2:Unit,1:Real Number) 10F74 Error: No Current Equation 10F79 MC: Error: No Current Equation 10FD6 Internal KILL 11036 Error: Non-Empty Directory 1103B MC: Error: Non-Empty Directory 11076 Internal CONT 112EC ?? save Last Arguments 114B3 Push @C.A as new System Binary 1158F Internal BLANK (2:System Binary,1:System Binary) 12665 recall PICT 12FB2 XFER: Save D,B,D1,D0 (uses C) 1314D Internal TEXT 13161 XFER: Restore D,B,D1,D0 (C=D0) / Clear Carry 1400E Internal ERR0 14039 Push Last Err# as System Binary 1404C Internal ERRN 14065 Internal ERRM 14088 Internal ->STR (1:Any) 140AB Internal DISP (2:Any,1:Real Number) 140F1 Internal CHR (1:Real Number) 1410F Internal NUM (1:String) 14137 Internal STR-> (1:String) 1415A Internal BEEP (2:Real Number,1:Real Number) 1420A Internal > (2:String,1:String) 142A6 Internal < (2:String,1:String) 142BA Internal >= (2:String,1:String) 142E2 Internal <= (2:String,1:String) 142FB Internal FREEZE (1:Real Number) 14378 Internal HALT 1439B ''halt' (Local Name) 14483 ''nohalt' (Local Name) 15007 Internal DOERR (1:Real Number) 1501B Internal DOERR (1:Binary Integer) 1502F Internal DOERR (1:System Binary) 15048 Internal DOERR (1:String) 15717 Internal STEQ (1:Any) 1572B Internal RCEQ 15744 Internal RCEQ -> Contents,True/False 15758 unevaluated 'EQ' (Global Name) 1576C 'EQ' (Global Name) 15781 '' (Global Name) 1592D Set last RPL token to <0h> and verify DEPTH >= 1 1613F Null String "" (RAM based) 166E3 Internal FIX (1:System Binary) 166EF Internal SCI (1:System Binary) 166FB Internal ENG (1:System Binary) 16707 Internal STD 16CA7 Error: Bad Argument Value 1848C Internal PATH 184E1 Internal CRDIR 18513 Internal STO (2:Any,1:Global Name) 1854F Internal PURGE (1:Global Name) 18595 Internal PGDIR (1:Global Name) 186E8 Internal TVARS (1:Real Number) 18706 Internal TVARS (1:List) 18779 Internal VARS 1884D Set last RPL Token to <0h> 18873 Internal AND (2:String,1:String) 18887 Internal OR (2:String,1:String) 1889B Internal XOR (2:String,1:String) 188AF if SIZE(TOS) = SIZE(TOS-1) (String), then NEWOB and SWAP, else Bad Argument Value 188D2 Internal NOT (1:String) 188E6 Deep internal AND (2:String,1:String) 188F5 Deep internal OR (2:String,1:String) 18904 Deep internal XOR (2:String,1:String) 18961 Deep internal NOT (1:String) 189FC Configuration code for library 002 (XLIB 2) 18A1E save last RPL token, stack size, clear @706FD.S 18A27 MC: save stack size, clear @706FD.S and continue RPL 18A51 continue RPL 18A5B Save last RPL token and verify DEPTH >= 3 18A68 Verify DEPTH >= 3 18A6D MC: verify DEPTH >= 3 and continue RPL 18A75 MC: verify DEPTH >= 3 18A80 Save last RPL token and verify DEPTH >= 2 18A8D Verify DEPTH >= 2 18A92 MC: verify DEPTH >= 2 and continue RPL 18A9A MC: verify DEPTH >= 2 18AA5 Save last RPL token and verify DEPTH >= 1 18AB2 Verify DEPTH >= 1 18AB7 MC: verify DEPTH >= 1 and continue RPL 18ABF MC: verify DEPTH >= 1 18AC6 MC: verify DEPTH >= C.S, expect P = 2*C.S - 1 18B6D Save last RPL token and verify DEPTH >= 5 18B7A Verify DEPTH >= 5 18B7F MC: verify DEPTH >= 5 and continue RPL 18B87 MC: verify DEPTH >= 5 18B92 Save last RPL token and verify DEPTH >= 4 18B9F Verify DEPTH >= 4 18BA4 MC: verify DEPTH >= 4 and continue RPL 18BAC MC: verify DEPTH >= 4 18C34 Save last token, check args, R->SB and verify TOS < DEPTH-1 18C4A Check args, R->SB and verify TOS < DEPTH-1 18C77 MC: save last RPL token 18C92 Error: Undefined Name 18C97 MC: Error: Undefined Name 18CA2 Error: Bad Argument Value 18CA7 MC: Error: Bad Argument Value 18CB2 Error: Bad Argument Type 18CB7 MC: Error: Bad Argument Type 18CC2 Error: Too Few Arguments 18CC7 MC: Error: Too Few Arguments 18CCE Put Error Code in C.A into A 18CD7 ABS(Real) -> System Binary 18CEA Internal R->SB (1:Real Number) 18DBF Internal SB->R (1:System Binary) 18EBA Internal EVAL (1:Algebraic/List) 18ECE Save last RPL token, verify DEPTH >= 1 and check args. 18EDF Save last RPL token, verify DEPTH >= 2 and check args. 18EF0 Save last RPL token, verify DEPTH >= 3 and check args. 18F01 Save last RPL token, verify DEPTH >= 4 and check args. 18F12 Save last RPL token, verify DEPTH >= 5 and check args. 18F83 XFER: Bad Argument Type 18F9D Check arguments for type (don't save D0) 18FA9 Check arguments for type - XFER 18FB2 Check arguments for type 18FB7 MC: check arguments for type 194BB verify Real Array (1:Array) 1957B ASR (XLIB 2 0) 1959B RL (XLIB 2 1) 195BB RLB (XLIB 2 2) 195DB RR (XLIB 2 3) 195FB RRB (XLIB 2 4) 1961B SL (XLIB 2 5) 1963B SLB (XLIB 2 6) 1965B SR (XLIB 2 7) 1967B SRB (XLIB 2 8) 1969B R->B (XLIB 2 9) 196BB B->R (XLIB 2 10) 196DB CONVERT (XLIB 2 11) 1971B UVAL (XLIB 2 12) 1974F UNIT (XLIB 2 13) 19771 UBASE (XLIB 2 14) 197A5 UFACT (XLIB 2 15) 197C8 Internal UFACT 197F7 TIME (XLIB 2 16) 19812 DATE (XLIB 2 17) 1982D TICKS (XLIB 2 18) 19848 WSLOG (XLIB 2 19) 19863 ACKALL (XLIB 2 20) 1987E ACK (XLIB 2 21) 1989E ->DATE (XLIB 2 22) 198BE ->TIME (XLIB 2 23) 198DE CLKADJ (XLIB 2 24) 198FE STOALARM (XLIB 2 25) 19928 RCLALARM (XLIB 2 26) 19948 FINDALARM (XLIB 2 27) 19972 DELALARM (XLIB 2 28) 19992 TSTR (XLIB 2 29) 199B2 DDAYS (XLIB 2 30) 199D2 DATE+ (XLIB 2 31) 19A72 'ALRMDAT' (Global Name) 19B1F 'ALRMDAT' (Global Name) 19DBE 'ALRMDAT' (Global Name) 1A105 CRDIR (XLIB 2 32) 1A125 PATH (XLIB 2 33) 1A140 HOME (XLIB 2 34) 1A15B UPDIR (XLIB 2 35) 1A16F Internal UPDIR 1A194 VARS (XLIB 2 36) 1A1AF TVARS (XLIB 2 37) 1A1D9 BYTES (XLIB 2 38) 1A1FC Internal BYTES (1:Any except Global Name) 1A265 Internal BYTES (1:Global Name) 1A2BC NEWOB (XLIB 2 39) 1A2DA if TOS = ROM Object -> True/False 1A303 KILL (XLIB 2 40) 1A31E OFF (XLIB 2 41) 1A339 DOERR (XLIB 2 42) 1A36D ERR0 (XLIB 2 43) 1A388 ERRN (XLIB 2 44) 1A3A3 ERRM (XLIB 2 45) 1A3BE EVAL (XLIB 2 46) 1A3FE IFTE (XLIB 2 47) 1A4A3 Internal IFTE (3:Real Number,2:Any,1:Any) 1A4CD IFT (XLIB 2 48) 1A4F0 Internal IFT (2:Real Number,1:Any) 1A513 Internal IFT (2:Symbolic,1:Any) 1A52E SYSEVAL (XLIB 2 49) 1A547 Internal SYSEVAL (1:Binary Integer) 1A584 DISP (XLIB 2 50) 1A5A4 FREEZE (XLIB 2 51) 1A5C4 BEEP (XLIB 2 52) 1A5E4 ->NUM (XLIB 2 53) 1A604 LASTARG (XLIB 2 54) 1A71F WAIT (XLIB 2 55) 1A738 Internal WAIT (1:Real Number) 1A7B5 Internal WAIT (1:Real Number > 0) 1A858 CLLCD (XLIB 2 56) 1A873 KEY (XLIB 2 57) 1A8BB CONT (XLIB 2 58) 1A8D8 = (XLIB 2 59) 1A995 NEG (XLIB 2 60) 1AA1F ABS (XLIB 2 61) 1AA6E CONJ (XLIB 2 62) 1AABD pi (XLIB 2 63) 1AADF MAXR (XLIB 2 64) 1AB01 MINR (XLIB 2 65) 1AB23 e (XLIB 2 66) 1AB45 i (XLIB 2 67) 1AB67 + (XLIB 2 68) 1AC93 Internal + (2:Any,1:List) 1ACA7 Internal + (2:String,1:Any) 1ACBB Internal + (2:Any,1:String) 1ACD7 ?? + (XLIB 2 69) 1AD09 - (XLIB 2 70) 1ADEE * (XLIB 2 71) 1AF05 / (XLIB 2 72) 1B02D ^ (XLIB 2 73) 1B124 Internal ^ (2:Real Number,1:Real Number) 1B185 XROOT (XLIB 2 74) 1B1C4 ?? XROOT (XLIB 2 75) 1B278 INV (XLIB 2 76) 1B2DB ARG (XLIB 2 77) 1B30D Internal ARG (1:Real Number) 1B32A SIGN (XLIB 2 78) 1B374 sqrt (XLIB 2 79) 1B3F5 Internal sqrt (1:Real Number) 1B426 SQ (XLIB 2 80) 1B47B Internal SQ (1:Real Number) 1B48F Internal SQ (1:Complex Number) 1B4AC SIN (XLIB 2 81) 1B505 COS (XLIB 2 82) 1B55E TAN (XLIB 2 83) 1B5B7 SINH (XLIB 2 84) 1B606 COSH (XLIB 2 85) 1B655 TANH (XLIB 2 86) 1B6A4 ASIN (XLIB 2 87) 1B6EA Internal ASIN (1:Real Number) 1B72F ACOS (XLIB 2 88) 1B775 Internal ACOS (1:Real Number) 1B79C ATAN (XLIB 2 89) 1B7EB ASINH (XLIB 2 90) 1B830 ACOSH (XLIB 2 91) 1B86C Internal ACOSH (1:Real Number) 1B8A2 ATANH (XLIB 2 92) 1B8DE Internal ATANH (1:Real Number) 1B905 EXP (XLIB 2 93) 1B94F LN (XLIB 2 94) 1B995 Internal LN (1:Real Number) 1B9C6 LOG (XLIB 2 95) 1BA0C Internal LOG (1:Real Number) 1BA3D ALOG (XLIB 2 96) 1BA8C LNP1 (XLIB 2 97) 1BAC2 EXPM (XLIB 2 98) 1BB02 ! (XLIB 2 99) 1BB41 FACT (XLIB 2 100) 1BB6D IP (XLIB 2 101) 1BBA3 FP (XLIB 2 102) 1BBD9 FLOOR (XLIB 2 103) 1BC0F CEIL (XLIB 2 104) 1BC45 XPON (XLIB 2 105) 1BC71 MAX (XLIB 2 106) 1BCE3 MIN (XLIB 2 107) 1BD55 RND (XLIB 2 108) 1BDD1 TRNC (XLIB 2 109) 1BE4D MOD (XLIB 2 110) 1BE9C MANT (XLIB 2 111) 1BEC8 D->R (XLIB 2 112) 1BEF4 R->D (XLIB 2 113) 1BF1E ->HMS (XLIB 2 114) 1BF3E HMS-> (XLIB 2 115) 1BF5E HMS+ (XLIB 2 116) 1BF7E HMS- (XLIB 2 117) 1BF9E RNRM (XLIB 2 118) 1BFBE CNRM (XLIB 2 119) 1BFDE DET (XLIB 2 120) 1BFFE DOT (XLIB 2 121) 1C01E CROSS (XLIB 2 122) 1C03E RSD (XLIB 2 123) 1C060 % (XLIB 2 124) 1C0D7 %T (XLIB 2 125) 1C149 %CH (XLIB 2 126) 1C1B9 RAND (XLIB 2 127) 1C1D4 RDZ (XLIB 2 128) 1C1F6 COMB (XLIB 2 129) 1C236 PERM (XLIB 2 130) 1C274 SF (XLIB 2 131) 1C28D Internal SF (1:Real Number) 1C2B0 TOS (Real) -> System Binary / TOS (Real) > 0 -> True/False 1C2D5 CF (XLIB 2 132) 1C2EE Internal CF (1:Real Number) 1C313 FS? (XLIB 2 133) 1C32C Internal FS? (1:Real Number) 1C331 Internal FS? (1:Real Number) -> True/False 1C360 FC? (XLIB 2 134) 1C379 Internal FC? (1:Real Number) 1C399 DEG (XLIB 2 135) 1C3B4 RAD (XLIB 2 136) 1C3CF GRAD (XLIB 2 137) 1C3EA FIX (XLIB 2 138) 1C403 Internal FIX (1:Real Number) 1C41E SCI (XLIB 2 139) 1C437 Internal SCI (1:Real Number) 1C452 ENG (XLIB 2 140) 1C46B Internal ENG (1:Real Number) 1C486 STD (XLIB 2 141) 1C4A1 FS?C (XLIB 2 142) 1C4BA Internal FS?C (1:Real Number) 1C4BF Internal FS?C (1:Real Number) -> True/False 1C520 FC?C (XLIB 2 143) 1C539 Internal FC?C (1:Real Number) 1C559 BIN (XLIB 2 144) 1C574 DEC (XLIB 2 145) 1C58F HEX (XLIB 2 146) 1C5AA OCT (XLIB 2 147) 1C5C5 STWS (XLIB 2 148) 1C5FE RCWS (XLIB 2 149) 1C619 RCLF (XLIB 2 150) 1C637 Internal recall System Flags 1C64E Internal recall User Flags 1C661 push Binary Integer @ D0 1C67F STOF (XLIB 2 151) 1C6A2 Internal STOF (1:List) 1C6CF Internal STOF (2:Binary Integer,1:Binary Integer) 1C6E3 Internal STOF (system) (1:Binary Integer) 1C6F7 Store user flags (1:Binary Integer) 1C731 Store system flags (1:Binary Integer) 1C783 ->LIST (XLIB 2 152) 1C79E R->C (XLIB 2 153) 1C7CA RE (XLIB 2 154) 1C819 IM (XLIB 2 155) 1C85C SUB (XLIB 2 156) 1C8BB Internal SUB (3:String,2:Real Number,1:Real Number) 1C8CF Internal SUB (3:List,2:Real Number,1:Real Number) 1C8EA REPL (XLIB 2 157) 1C95A LIST-> (XLIB 2 158) 1C973 explode composite object -> (N:...,1:Real Number) 1C98E C->R (XLIB 2 159) 1C9B8 SIZE (XLIB 2 160) 1CA26 Internal SIZE (1:String) 1CA3A Internal SIZE (1:Unit) 1CA4E Internal SIZE (1:Array) 1CA62 Internal SIZE (1:Graphic) 1CA85 Internal SIZE (1:Binary Integer) 1CAB4 POS (XLIB 2 161) 1CAD7 Internal POS (2:String,1:String) 1CAF0 Internal POS (2:List,1:Any) 1CB0B ->STR (XLIB 2 162) 1CB26 STR-> (XLIB 2 163) 1CB46 NUM (XLIB 2 164) 1CB66 CHR (XLIB 2 165) 1CB86 TYPE (XLIB 2 166) 1CB90 Internal TYPE (1:Any) 1CDB1 Internal TYPE (1:Array) 1CDD4 Internal TYPE (1:Program) 1CE28 VTYPE (XLIB 2 167) 1CE55 Internal VTYPE (1:Global Name/Local Name) 1CE82 Internal VTYPE (1:Tagged) 1CEE3 EQ-> (XLIB 2 168) 1CF2E Internal EQ-> (1:Algebraic) 1CF7B OBJ-> (XLIB 2 169) 1CFD0 Internal OBJ-> (1:Algebraic) 1D009 ->ARRY (XLIB 2 170) 1D02C Internal ->ARRY (1:Real Number) 1D040 Internal ->ARRY (1:List) 1D092 ARRY-> (XLIB 2 171) 1D0AB Internal ARRY-> (1:Array) 1D0DF RDM (XLIB 2 172) 1D10C Internal RDM (2:Array,1:List) 1D125 Internal RDM (2:Global Name,1:List) 1D152 Internal RDM (2:Local Name,1:List) 1D186 CON (XLIB 2 173) 1D1EA Internal CON (2:List,1:Real Number/Complex Number) 1D221 Internal CON (2:List,1:Complex Number) 1D23F Internal CON (2:Global Name,1:Real Number) 1D262 Internal CON (2:Global Name,1:Complex Number) 1D28A Internal CON (2:Local Name,1:Real Number) 1D2AD Internal CON (2:Local Name,1:Complex Number) 1D2DC IDN (XLIB 2 174) 1D313 Internal IDN (1:Real Number) 1D34A Internal IDN (1:Global Name) 1D36D Internal IDN (1:Local Name) 1D392 TRN (XLIB 2 175) 1D3BF Internal TRN (1:Global Name) 1D3E2 Internal TRN (1:Local Name) 1D407 PUT (XLIB 2 176) 1D484 Internal PUT (3:Global Name,2:Real Number/List,1:Any) 1D4DE Internal PUT (3:Array,2:Real Number/List,1:Real Number/Complex Number) 1D524 Internal PUT (3:List,2:Real Number/List,1:Any) 1D565 Internal PUT (3:Local Name,2:Real Number/List,1:Any) 1D5DF PUTI (XLIB 2 177) 1D65C Internal PUTI (3:Global Name,2:Real Number/List,1:Any) 1D6B6 Internal PUTI (3:Array,2:Real Number/List,1:Real Number/Complex Number) 1D701 Internal PUTI (3:List,2:Real Number/List,1:Any) 1D747 Internal PUTI (3:Local Name,2:Real Number/List,1:Any) 1D7C6 GET (XLIB 2 178) 1D825 Internal GET (2:Global Name/Local Name,1:Real Number/List) 1D86B Internal GET (2:Array,1:Real Number/List) 1D898 Internal GET (2:List,1:Real Number/List) 1D8C7 GETI (XLIB 2 179) 1D926 Internal GETI (2:Global Name/Local Name,1:Real Number/List) 1D96C Internal GETI (2:Array,1:Real Number/List) 1D9BC Internal GETI (2:List,1:Real Number/List) 1DD06 V-> (XLIB 2 180) 1DD29 Internal V-> (1:Complex Number) 1DD3D Internal V-> (1:Array) 1DE66 ->V2 (XLIB 2 181) 1DE7F Internal ->V2 (2:Real Number,1:Real Number) 1DEC2 ->V3 (XLIB 2 182) 1DEDB Internal ->V3 (3:Real Number,2:Real Number,1:Real Number) 1E04A INDEP (XLIB 2 183) 1E07E PMIN (XLIB 2 184) 1E09E PMAX (XLIB 2 185) 1E0BE AXES (XLIB 2 186) 1E0E8 CENTR (XLIB 2 187) 1E101 Internal CENTR (1:Real Number) 1E126 RES (XLIB 2 188) 1E150 *H (XLIB 2 189) 1E170 *W (XLIB 2 190) 1E190 DRAW (XLIB 2 191) 1E1AB AUTO (XLIB 2 192) 1E1C6 DRAX (XLIB 2 193) 1E1E1 SCALE (XLIB 2 194) 1E201 PDIM (XLIB 2 195) 1E22B DEPND (XLIB 2 196) 1E25F ERASE (XLIB 2 197) 1E27A PX->C (XLIB 2 198) 1E29A C->PX (XLIB 2 199) 1E2BA GRAPH (XLIB 2 200) 1E2D5 LABEL (XLIB 2 201) 1E2F0 PVIEW (XLIB 2 202) 1E31A PIXON (XLIB 2 203) 1E344 PIXOFF (XLIB 2 204) 1E36E PIX? (XLIB 2 205) 1E398 LINE (XLIB 2 206) 1E3C2 TLINE (XLIB 2 207) 1E3EC BOX (XLIB 2 208) 1E416 BLANK (XLIB 2 209) 1E436 PICT (XLIB 2 210) 1E456 GOR (XLIB 2 211) 1E46A Internal GOR (3:Graphic,2:List,1:Graphic) 1E488 Internal GOR (3:Graphic,2:Complex Number,1:Graphic) 1E4A6 Internal GOR (3:PICT,2:List,1:Graphic) 1E4C4 Internal GOR (3:PICT,2:Complex Number,1:Graphic) 1E4E4 GXOR (XLIB 2 212) 1E572 LCD-> (XLIB 2 213) 1E58D ->LCD (XLIB 2 214) 1E5AD ->GROB (XLIB 2 215) 1E5D2 ARC (XLIB 2 216) 1E606 TEXT (XLIB 2 217) 1E621 XRNG (XLIB 2 218) 1E641 YRNG (XLIB 2 219) 1E661 FUNCTION (XLIB 2 220) 1E681 CONIC (XLIB 2 221) 1E6A1 POLAR (XLIB 2 222) 1E6C1 PARAMETRIC (XLIB 2 223) 1E6E1 TRUTH (XLIB 2 224) 1E701 SCATTER (XLIB 2 225) 1E721 HISTOGRAM (XLIB 2 226) 1E741 BAR (XLIB 2 227) 1E761 SAME (XLIB 2 228) 1E783 AND (XLIB 2 229) 1E7DD Internal AND (2:Real Number,1:Real Number) 1E809 OR (XLIB 2 230) 1E863 Internal OR (2:Real Number,1:Real Number) 1E88F NOT (XLIB 2 231) 1E8D9 Internal NOT (1:Real Number) 1E8F6 XOR (XLIB 2 232) 1E946 Internal XOR (2:Real Number,1:Real Number) 1E972 == (XLIB 2 233) 1EA30 Internal == (2:Any,1:Any) 1EA44 Internal == (2:Tagged/Any,1:Tagged/Any) 1EA6C Internal == (2:Real Number,1:Complex Number) 1EA76 Internal == (2:Complex Number,1:Real Number) 1EA9D != (XLIB 2 234) 1EB51 Internal != (2:Any,1:Any) 1EB65 Internal != (2:Tagged/Any,1:Tagged/Any) 1EB8D Internal != (2:Real Number,1:Complex Number) 1EB97 Internal != (2:Complex Number,1:Real Number) 1EBBE < (XLIB 2 235) 1EC40 Internal < (2:Real Number,1:Real Number) 1EC5D > (XLIB 2 236) 1ECDF Internal > (2:Real Number,1:Real Number) 1ECFC <= (XLIB 2 237) 1ED7E Internal <= (2:Real Number,1:Real Number) 1ED9B >= (XLIB 2 238) 1EE1D Internal >= (2:Real Number,1:Real Number) 1EE38 OLDPRT (XLIB 2 239) 1EE53 PR1 (XLIB 2 240) 1EE6E PRSTC (XLIB 2 241) 1EE89 PRST (XLIB 2 242) 1EEA4 CR (XLIB 2 243) 1EEBF PRVAR (XLIB 2 244) 1EEEC Internal PRVAR (1:Tagged) 1EF1E Internal PRVAR (1:List) 1EF43 DELAY (XLIB 2 245) 1EF63 PRLCD (XLIB 2 246) 1EF7E delta (complete derivative) (XLIB 2 247) 1EFD2 delta (stepwise derivative) (XLIB 2 248) 1F047 Internal DROP2 and push 0 1F0F5 Internal delta (stepwise derivative) (2:Algebraic,1:Symbolic) 1F133 RCEQ (XLIB 2 249) 1F14E STEQ (XLIB 2 250) 1F16E ROOT (XLIB 2 251) 1F1D4 integral (stack syntax) (XLIB 2 252) 1F201 Internal integral (stack syntax) 1F223 integral (algebraic syntax) (XLIB 2 253) 1F27A Internal integral (algebraic syntax) 1F2C9 sigma (XLIB 2 254) 1F354 | (stack syntax) (XLIB 2 255) 1F38B Internal | (stack syntax) (2:Symbolic,1:List) 1F3F3 | (algebraic syntax) (XLIB 2 256) 1F500 QUOTE (XLIB 2 257) 1F542 Internal QUOTE (1:Algebraic) 1F55D APPLY (stack syntax) (XLIB 2 258) 1F585 Internal APPLY (stack syntax) (2:List,1:Global Name/Local Name) 1F5C5 APPLY (algebraic syntax) (XLIB 2 259) 1F640 XLIB 2 260 1F8CF Internal STO (2:Any,1:Algebraic) 1F96F ''num' (Local Name) 1F97E ''fcn' (Local Name) 1F996 XLIB 2 261 1F9AE XLIB 2 262 1F9C4 ->Q (XLIB 2 263) 1F9E9 ->Qpi (XLIB 2 264) 1FA59 ^MATCH (XLIB 2 265) 1FA8D vMATCH (XLIB 2 266) 1FABA Internal ^MATCH (2:Real Number/Complex Number/Symbolic,1:List) 1FACE Internal vMATCH (2:Real Number/Complex Number/Symbolic,1:List) 1FAEB _ (XLIB 2 267) 1FB31 Internal _ (1:Real Number/Unit) 1FB5D RATIO (XLIB 2 268) 1FB87 DUP (XLIB 2 269) 1FBA2 DUP2 (XLIB 2 270) 1FBBD SWAP (XLIB 2 271) 1FBD8 DROP (XLIB 2 272) 1FBF3 DROP2 (XLIB 2 273) 1FC0E ROT (XLIB 2 274) 1FC29 OVER (XLIB 2 275) 1FC44 DEPTH (XLIB 2 276) 1FC64 DROPN (XLIB 2 277) 1FC7F DUPN (XLIB 2 278) 1FC9A PICK (XLIB 2 279) 1FCB5 ROLL (XLIB 2 280) 1FCD0 ROLLD (XLIB 2 281) 1FCEB CLEAR (XLIB 2 282) 1FD0B STOsigma (XLIB 2 283) 1FD2B CLsigma (XLIB 2 284) 1FD46 RCLsigma (XLIB 2 285) 1FD61 sigma+ (XLIB 2 286) 1FD8B sigma- (XLIB 2 287) 1FDA6 Nsigma (XLIB 2 288) 1FDC1 CORR (XLIB 2 289) 1FDDC COV (XLIB 2 290) 1FDF7 sigmaX (XLIB 2 291) 1FE12 sigmaY (XLIB 2 292) 1FE2D sigmaX^2 (XLIB 2 293) 1FE48 sigmaY^2 (XLIB 2 294) 1FE63 sigmaX*Y (XLIB 2 295) 1FE7E MAXsigma (XLIB 2 296) 1FE99 MEAN (XLIB 2 297) 1FEB4 MINsigma (XLIB 2 298) 1FECF SDEV (XLIB 2 299) 1FEEA TOT (XLIB 2 300) 1FF05 VAR (XLIB 2 301) 1FF20 LR (XLIB 2 302) 1FF7A PREDV (XLIB 2 303) 1FF9A PREDY (XLIB 2 304) 1FFBA PREDX (XLIB 2 305) 1FFDA XCOL (XLIB 2 306) 1FFFA YCOL (XLIB 2 307) 2001A UTPC (XLIB 2 308) 2003A UTPN (XLIB 2 309) 2005A UTPF (XLIB 2 310) 2007A UTPT (XLIB 2 311) 2009A COLsigma (XLIB 2 312) 200C4 SCLsigma (XLIB 2 313) 200F3 sigmaLINE (XLIB 2 314) 2010E BINS (XLIB 3 315) 20133 BARPLOT (XLIB 2 316) 20167 HISTPLOT (XLIB 2 317) 2018C SCATRPLOT (XLIB 2 318) 201B1 LINFIT (XLIB 2 319) 201D6 LOGFIT (XLIB 2 320) 201FB EXPFIT (XLIB 2 321) 20220 PWRFIT (XLIB 2 322) 20234 set curve-fitting model in 'sigmaPAR' (1:model) 2025E BESTFIT (XLIB 2 323) 202CE SINV (XLIB 2 324) 202F1 Internal SINV (1:Global Name) 20314 Internal SINV (1:Local Name) 2034D SNEG (XLIB 2 325) 20370 Internal SNEG (1:Global Name) 20393 Internal SNEG (1:Local Name) 203CC SCONJ (XLIB 2 326) 203EF Internal SCONJ (1:Global Name) 20412 Internal SCONJ (1:Local Name) 2044B STO+ (XLIB 2 327) 20482 Internal STO+ (2:Any,1:Global Name/Local Name) 20496 <644h> 204C3 Internal STO+ (2:Global Name/Local Name,1:Any) 20538 STO- (XLIB 2 328) 20583 Internal STO- (2:Any,1:Global Name/Local Name) 205A1 Internal STO- (2:Global Name/Local Name,1:Any) 205BF Internal STO- (2:Array,1:Global Name) 205E2 Internal STO- (2:Global Name,1:Array) 2060C STO/ (XLIB 2 329) 2066B Internal STO/ (2:Any,1:Global Name/Local Name) 20689 Internal STO/ (2:Global Name/Local Name,1:Any) 206A7 Internal STO/ (2:Global Name,1:Real Number/Complex Number) 206E8 Internal STO/ (2:Array,1:Global Name) 20729 Internal STO/ (2:Global Name,1:Array) 20753 STO* (XLIB 2 330) 207C6 Internal STO* (2:Any,1:Global Name/Local Name) 207E4 Internal STO* (2:Global Name/Local Name,1:Any) 20802 Internal STO* (2:Real Number/Complex Number,1:Global Name) 2082A Internal STO* (2:Global Name,1:Real Number/Complex Number) 2086B Internal STO* (2:Array,1:Global Name) 208AC Internal STO* (2:Global Name,1:Array) 208F4 INCR (XLIB 2 331) 20917 Internal INCR (1:Global Name) 20980 Internal INCR (1:Local Name) 209AA DECR (XLIB 2 332) 209CD Internal DECR (1:Global Name) 209EB Internal DECR (1:Local Name) 20A15 COLCT (XLIB 2 333) 20A49 EXPAN (XLIB 2 334) 20A7D RULES (XLIB 2 335) 20A93 ISOL (XLIB 2 336) 20AB3 QUAD (XLIB 2 337) 20AD3 SHOW (XLIB 2 338) 20B00 Internal SHOW (2:Symbolic,1:List) 20B20 TAYLR (XLIB 2 339) 20B40 RCL (XLIB 2 340) 20B81 Internal RCL (1:Global Name/Local Name) 20B9A Internal RCL (1:List (path/object)) 20CAD Internal RCL (1:PICT) 20CCD STO (XLIB 2 341) 20D65 DEFINE (XLIB 2 342) 20D7E Internal DEFINE (1:Algebraic) 20DBF Internal DEFINE (1:Global Name/Local Name) 20EFE PURGE (XLIB 2 343) 20F35 Internal PURGE (1:List) 20F8A Internal PURGE (1:PICT) 20FAA MEM (XLIB 2 344) 20FD9 ORDER (XLIB 2 345) 20FF2 Internal ORDER (1:List) 210FC CLVAR (XLIB 2 346) 2115D TMENU (XLIB 2 347) 21196 MENU (XLIB 2 348) 211B4 'CST' (Global Name) 211E1 RCLMENU (XLIB 2 349) 211FC PVARS (XLIB 2 350) 2123A PGDIR (XLIB 2 351) 2125A ARCHIVE (XLIB 2 352) 21273 Internal ARCHIVE (1:Tagged) 2133C RESTORE (XLIB 2 353) 2137F MERGE (XLIB 3 354) 21398 Internal MERGE (1:Real Number) 213D1 FREE (XLIB 2 355) 21408 Internal FREE (2:Real Number/Global Name/Local Name,1:Real Number) 2142D LIBS (XLIB 2 356) 21448 ATTACH (XLIB 2 357) 21461 Internal ATTACH (1:Real Number) 2147C DETACH (XLIB 2 358) 21495 Internal DETACH (1:Real Number) 214A9 Internal R->SB and verify >= <100h> and != <700h> 214F4 Internal STO (2:Any,1:Tagged) 215BF Internal STO (2:Library/Backup,1:Real Number) 21638 if TYPE(TOS) = Real Number, then do next/return, else skip next 2164C Internal SWAP and False 21660 deop level two object and True 21761 Internal RCL (1:Tagged) 217C7 Internal EVAL (1:Tagged) 217F1 Internal PURGE (1:Tagged) 21B2F Internal RESTORE (1:Backup) 21B74 Internal FREE (2:List,1:Real Number) 21C6F Internal ATTACH (1:System Binary) 21CBA Internal ATTACH to non-HOME directory (2:Directory,1:System Binary) 21CE5 Internal DETACH (1:System Binary) 21D2B Internal DETACH from non-HOME directory (2:Directory,1:System Binary) 21D54 Internal LIBS 21E75 XMIT (XLIB 2 359) 21E95 SRECV (XLIB 2 360) 21EB5 OPENIO (XLIB 2 361) 21ED5 CLOSEIO (XLIB 2 362) 21EF0 SEND (XLIB 2 363) 21F24 KGET (XLIB 2 364) 21F62 RECN (XLIB 2 365) 21F96 RECV (XLIB 2 366) 21FB6 FINISH (XLIB 2 367) 21FD1 SERVER (XLIB 2 368) 21FEC CKSM (XLIB 2 369) 2200C BAUD (XLIB 2 370) 2202C PARITY (XLIB 2 371) 2204C TRANSIO (XLIB 2 372) 2206C KERRM (XLIB 2 373) 22087 BUFLEN (XLIB 2 374) 220A2 STIME (XLIB 2 375) 220C2 SBRK (XLIB 2 376) 220DD PKT (XLIB 2 377) 224CA INPUT (XLIB 2 378) 224F4 ASN (XLIB 2 379) 22514 STOKEYS (XLIB 2 380) 22548 DELKEYS (XLIB 2 381) 22586 RCLKEYS (XLIB 2 382) 225A4 'S' (Global Name) 225BE ->TAG (XLIB 2 383) 225F5 Internal ->TAG (2:Any,1:String) 22618 Internal ->TAG (2:Any,1:Real Number) 22633 DTAG (XLIB 2 384) 22647 Reference to hash table for library 002 (XLIB 2) 22651 Link table for library 002 (XLIB 2) 22DFE Reference to hash table for library 700 (XLIB 1792) 22E08 Link table for library 700 (XLIB 1792) 22EA3 Configuration code for library 700 (XLIB 1792) 22EC3 IF (XLIB 1792 0) 22EFA THEN (XLIB 1792 1) 22F22 Internal THEN (1:Real Number) 22F4F Internal THEN (1:Symbolic) 22FB5 ELSE (XLIB 1792 2) 22FD5 END (XLIB 1792 3) 22FEB -> (XLIB 1792 4) 23033 WHILE (XLIB 1792 5) 2305D REPEAT (XLIB 1792 6) 23085 Internal REPEAT (1:Real Number) 230A3 Internal REPEAT (1:Symbolic) 230C3 DO (XLIB 1792 7) 230ED UNTIL (XLIB 1792 8) 23103 START (XLIB 1792 9) 23144 Internal START (2:Real Number,1:Real Number) 23167 Internal START (2:Real Number/Symbolic,1:Symbolic) 23180 Internal START (2:Symbolic,1:Real Number) 231A0 FOR (XLIB 1792 10) 231E1 Internal FOR (2:Real Number,1:Real Number) 23213 Internal FOR (2:Real Number/Symbolic,1:Symbolic) 2322C Internal FOR (2:Symbolic,1:Real Number) 2324C NEXT (XLIB 1792 11) 2326A Internal NEXT 23380 STEP (XLIB 1792 12) 233A8 Internal STEP (1:Symbolic) 233C1 Internal STEP (1:Real Number) 233DF IFERR (XLIB 1792 13) 23472 HALT (XLIB 1792 14) 2349C (XLIB 1792 15) 234C1 -> (XLIB 1792 16) 235FE >> (XLIB 1792 17) 2361E << (XLIB 1792 18) 23639 >> (XLIB 1792 19) 23654 ' (XLIB 1792 20) 23679 ' (XLIB 1792 21) 23694 END (XLIB 1792 22) 236B9 END (XLIB 1792 23) 2371F THEN (XLIB 1792 24) 2372E ''stop' (Local Name) 2373F ''noname' (Local Name) 23754 { ''noname' ''stop' } 23768 ?? internal IF 2378D CASE (XLIB 1792 25) 237A8 THEN (XLIB 1792 26) 23813 DIR (XLIB 1792 27) 23824 PROMPT (XLIB 1792 28) 2387E ''ioinprogress' (Local Name) 23908 'st' (Local Name) 23913 'ofs' (Local Name) 23920 'tok' (Local Name) 2394B 'st' (Local Name) 23956 'ofs' (Local Name) 23963 'tok' (Local Name) 24A2D 'i' (Local Name) 24A36 'j' (Local Name) 24A5D 'i' (Local Name) 24A6B 'j' (Local Name) 24B0A 'j' (Local Name) 24B1D 'i' (Local Name) 24B30 'i' (Local Name) 24BB6 'j' (Local Name) 24BD3 'i' (Local Name) 24BE1 'i' (Local Name) 25A0B ''1' (Local Name) 25A16 ''2' (Local Name) 25A21 ''3' (Local Name) 25A3B ''1' (Local Name) 25A46 ''2' (Local Name) 25A51 ''3' (Local Name) 272CD ''ttt' (Local Name) 272DC ''str' (Local Name) 272EB ''ofs' (Local Name) 272FA ''tok' (Local Name) 27309 ''rbv' (Local Name) 27318 ''idfflg' (Local Name) 2732D ''tmpop' (Local Name) 27340 ''tmppdat' (Local Name) 27357 ''ploc' (Local Name) 27368 ''bv' (Local Name) 27375 ''unbound' (Local Name) 28A38 Internal _ (1:Symbolic) 29FDA Let A = Binary(TOS (Real)) / save B,D,D1,D0 2A181 XFER: load regs D,B,D1,D0 (uses C) 2A2B4 0 2A2C9 1 2A2DE 2 2A2DF 2 2A2F3 3 2A308 4 2A31D 5 2A332 6 2A347 7 2A35C 8 2A371 9 2A386 -1 2A39B -2 2A3B0 -3 2A3C5 -4 2A3D1 5 2A3DA -5 2A3EF -6 2A404 -7 2A419 -8 2A42E -9 2A443 3.14159265359 2A458 3.14159265358979 (Long Real) 2A472 9.99999999999E499 2A487 -9.99999999999E499 2A49C 1.E-499 2A4B1 -1.E-499 2A4C6 0 (Long Real) 2A4E0 1 (Long Real) 2A4FA 2 (Long Real) 2A514 3 (Long Real) 2A52E 4 (Long Real) 2A548 5 (Long Real) 2A562 .1 (Long Real) 2A57C .5 (Long Real) 2A596 10 (Long Real) 2A5B0 Internal LR->R (1:Long Real) 2A5C1 Internal R->LR (1:Real Number) 2A5D2 Internal DEG 2A5F0 Internal RAD 2A604 Internal GRAD 2A622 Internal D->R (1:Real Number) 2A655 Internal R->D (1:Real Number) 2A673 Internal ->HMS (1:Real Number) 2A68C Internal HMS-> (1:Real Number) 2A6A0 Internal HMS+ (2:Real Number,1:Real Number) 2A6C8 Internal HMS- (2:Real Number,1:Real Number) 2A6F5 Internal MAX (2:Real Number,1:Real Number) 2A70E Internal MIN (2:Real Number,1:Real Number) 2A738 if pop TOS < 0 (Real Number) -> True/False 2A799 if pop TOS > 0 (Real Number) -> True/False 2A871 Internal < (2:Real Number,1:Real Number) -> True/False 2A88A Internal > (2:Real Number,1:Real Number) -> True/False 2A8A0 Internal >= (2:Real Number,1:Real Number) -> True/False 2A8B6 Internal <= (2:Real Number,1:Real Number) -> True/False 2A8D7 Internal SIGN (1:Real Number) 2A900 Internal ABS (1:Real Number) 2A920 Internal NEG (1:Real Number) 2A930 Internal MANT (1:Real Number) 2A974 Internal + (2:Real Number,1:Real Number) 2A981 Internal - (2:Real Number,1:Real Number) 2A9BC Internal * (2:Real Number,1:Real Number) 2A9C9 Internal % (2:Real Number,1:Real Number) 2A9FE Internal / (2:Real Number,1:Real Number) 2AA0B Internal %T (2:Real Number,1:Real Number) 2AA30 Internal %CH (2:Real Number,1:Real Number) 2AAAF Internal INV (1:Real Number) 2AB2F Internal EXP (1:Real Number) 2AB42 Internal EXPM (1:Real Number) 2ABA7 Internal LNP1 (1:Real Number) 2ABBA Internal ALOG (1:Real Number) 2ABDC Internal MOD (2:Real Number,1:Real Number) 2ABEF Internal SIN (1:Real Number) 2AC40 Internal COS (1:Real Number) 2AC91 Internal TAN (1:Real Number) 2AD21 Internal ATAN (1:Real Number) 2ADAE Internal SINH (1:Real Number) 2ADDA Internal COSH (1:Real Number) 2ADED Internal TANH (1:Real Number) 2AE00 Internal ASINH (1:Real Number) 2AE39 Internal XPON (1:Real Number) 2AE62 Internal COMB (2:Real Number,1:Real Number) 2AE75 Internal PERM (2:Real Number,1:Real Number) 2AF4D Internal FP (1:Real Number) 2AF60 Internal IP (1:Real Number) 2AF73 Internal CEIL (1:Real Number) 2AF86 Internal FLOOR (1:Real Number) 2AFC2 Internal RAND 2B044 Internal RDZ (1:Real Number) 2B0C4 Internal ! (1:Real Number) 2B529 Internal RND (2:Real Number,1:Real Number) 2B53D Internal TRNC (2:Real Number,1:Real Number) 2C09F Internal UTPN (3:Real Number,2:Real Number,1:Real Number) 2C149 Internal UTPC (2:Real Number,1:Real Number) 2C174 Internal UTPF (3:Real Number,2:Real Number,1:Real Number) 2C19A Internal UTPT (2:Real Number,1:Real Number) 2C1F3 Internal STOsigma (1:Any) 2C1FD 'sigmaDAT' (Global Name) 2C22F Internal CLsigma 2C293 Internal RCLsigma -> Contents,True/False 2C2AC Internal RCLsigma 2C2D9 Internal sigma+ (1:Real Number) 2C32E Internal sigma+ (1:Array) 2C423 Internal sigma- 2C535 Internal Nsigma 2C558 Internal MAXsigma 2C571 Internal MEAN 2C58A Internal MINsigma 2C5A3 Internal SDEV 2C5BC Internal TOT 2C5D5 Internal VAR 2C684 Internal COLsigma (2:Real Number/Array,1:Real Number) 2C6A2 store levels 1-5 into 'sigmaPAR' 2C6C5 Internal XCOL (1:Real Number) 2C6DE Internal YCOL (1:Real Number) 2C738 'sigmaPAR' (Global Name) 2C84B Internal CORR 2C8F5 Internal COV 2C94F Internal sigmaX 2C963 Internal sigmaY 2C977 Internal sigmaX^2 2C99A Internal sigmaY^2 2C9BD Internal sigmaX*Y 2CA30 Internal LR 2CB02 Internal PREDY (1:Real Number) 2CB75 Internal PREDX (1:Real Number) 2D2E6 Error: Nonexistent sigmaDAT 2D2EB MC: Error: Nonexistent sigmaDAT 2D3A0 ''PKNO' (Local Name) 2D3B1 ''PACKET' (Local Name) 2D3C6 ''RETRY' (Local Name) 2D3D9 ''ERRMSG' (Local Name) 2D3EE ''KP' (Local Name) 2D3FB ''LNAME' (Local Name) 2D40E ''OBJ' (Local Name) 2D41D ''OPOS' (Local Name) 2D42E ''EXCHP' (Local Name) 2D45A ''KLIST' (Local Name) 2D46D ''KMODE' (Local Name) 2D480 ''KPTRN' (Local Name) 2D493 ''KRM' (Local Name) 2D4A2 ''MaxR' (Local Name) 2D816 Internal RECN (1:String/Global Name/Local Name) 2D9F5 Internal SERVER 2E5AB Internal SEND (1:Global Name/Local Name) 2E6EB Internal SEND (1:List) 2E7EF Internal KGET (1:String/Global Name/Local Name) 2E835 Internal KGET (1:List) 2E876 Internal FINISH 2E8D1 Internal PKT (2:String,1:String) 2E9D5 'IOPAR' (Global Name) 2EA59 'IOPAR' (Global Name) 2EC11 ABS(IP(Real Number)) -> System Binary 2EC84 Internal BAUD (1:Real Number) 2ECCA Internal PARITY (1:Real Number) 2ED10 Internal TRANSIO (1:Real Number) 2ED4C Internal CKSM (1:Real Number) 2EDA6 Internal KERRM 2EDE1 Internal BUFLEN 2EDF5 Internal STIME (1:Real Number) 2EE18 Internal SBRK 2EE6F Internal XMIT (1:String) 2EE97 Internal SRECV (1:Real Number) 2F211 ''KML' (Local Name) 2F46E ''KEOF' (Local Name) 30794 Binary file header (HPHP48-B) 315C6 Internal CLOSEIO 31868 Internal CR 318A4 Internal PRSTC 318FE Internal PR1 31A25 Internal PRST 31C37 ''IWrap' (Local Name) 31D56 Internal PRVAR (1:Global Name/Local Name) 31DAB Internal OLDPRT 31EE2 Internal PRLCD 31F87 'PRTPAR' (Global Name) 31FB8 'PRTPAR' (Global Name) 31FFD Internal DELAY (1:Real Number) 32F77 Internal ROOT (3 args) 34D30 '' (Local Name) 34DBB ''symb' (Global Name) 35CAE Internal CON (2:List,1:Real Number) 35D35 Internal IDN (1:Array) 35DEB Internal NEG (1:Array) 35E2C Internal RND (2:Array,1:Real Number) 35EA9 Internal TRNC (2:Array,1:Real Number) 35EC2 Internal RND (2:Complex Number,1:Real Number) 35F17 Internal TRNC (2:Complex Number,1:Real Number) 35F30 Internal CONJ (1:Array) 35F8F Internal RE (1:Array) 35FEE Internal IM (1:Array) 36039 Internal R->C (2:Array,1:Array) 360B6 Internal C->R (1:Array) 36115 Internal + (2:Array,1:Array) 36278 Internal - (2:Array,1:Array) 362DC Internal * (2/1:Real Number/Complex Number,1/2:Array) 363CC Internal / (2:Array,1:Real Number/Complex Number) 36435 Internal SQ (1:Array) 3643F Internal * (2:Array,1:Array) 365AC Internal RSD (3:Array,2:Array,1:Array) 366F6 Internal DOT (2:Array,1:Array) 36782 Internal CROSS (2:Array,1:Array) 368E5 Internal RNRM (1:Array) 368F9 Internal CNRM (1:Array) 3690D Internal RNRM... (1:Array) 369CB Internal ABS (1:Array) 36A2A Internal DET (1:Array) 36B0B Internal INV (1:Array) 36B60 Internal / (2:Array,1:Array) 36BF6 '#a' (Local Name) 36C01 '#b' (Local Name) 36C2F '#b' (Local Name) 36C3F '#a' (Local Name) 36CEF '#b' (Local Name) 36D18 '#b' (Local Name) 3811F Internal TRN (1:Array) 38A3E ''SavedUI' (Local Name) 3A1FC Update menu display 3FACF 'SKEY' (Global Name) 3FAE8 'SKEY' (Local Name) 3FDD1 Internal RULES 40788 Null Program 4093B '.ENTER' (Global Name) 409DF '.ENTER' (Global Name) 415C9 Internal RCLMENU 41679 Internal TMENU (1:Real Number) 41A43 'UserKeys' (Global Name) 41A69 'UserKeys.CRC' (Global Name) 41AA1 Intenral STOKEYS (1:List) 41B28 Internal ASN (2:Any,1:Real Number) 41B3C Internal DELKEYS (1:List) 41B69 Internal DELKEYS (1:Real Number) 41BA5 Internal STOKEYS (1:Global Name/Local Name) 41BB9 Internal DELKEYS (1:Global Name/Local Name) 41BD7 'S' (Global Name) 41BEA 'S' (Local Name) 43395 Internal INPUT (2:String,1:String) 433CC Internal INPUT (2:String,1:List) 4353E 'ALG' (Global Name) 43555 'ALG' (Local Name) 4358A '.' (Global Name) 4359D '.' (Local Name) 435CE 'V' (Global Name) 435E1 'V' (Local Name) 47459 'X' (Global Name) 47A1A Internal XRNG (2:Real Number,1:Real Number) 47A42 Internal YRNG (2:Real Number,1:Real Number) 47A6A Internal INDEP (1:Real Number) 47A8D Internal DEPND (1:Real Number) 48D4B 'ALRMDAT' (Global Name) 491D5 Internal AUTO 4A145 'X' (Global Name) 4A16C Internal sigmaLINE 4A19E 'X' (Global Name) 4A1DE 'X' (Global Name) 4A22D 'X' (Global Name) 4A25E 'X' (Global Name) 4AB1C 'X' (Global Name) 4AB2A (0,0) 4AB59 'Y' (Global Name) 4AC61 Internal CENTR (1:Complex Number) 4AE3C Internal SCALE (2:Real Number,1:Real Number) 4AF77 Internal INDEP (1:Global Name) 4AF8B Internal INDEP (1:List) 4AFB3 Internal DEPND (1:Global Name) 4AFC7 Internal DEPND (1:List) 4AFEF Internal RES (1:Real Number) 4B012 Internal RES (1:positive Real Number/Binary Integer) 4B03A Internal AXES (1:Complex Number) 4B04E Internal AXES (1:List) 4B09E Internal PMIN (1:Complex Number) 4B0C6 Internal PMAX (1:Complex Number) 4B206 Internal PDIM (2:Complex Number,1:Complex Number) 4B300 Internal PDIM (2:Binary Integer,1:Binary Integer) 4B323 Internal PDIM (2:System Binary,1:System Binary) 4B553 Internal *H (1:Real Number) 4B5AD Internal *W (1:Real Number) 4B60C Internal ERASE 4B6AC Internal DRAW 4C607 Internal DRAX 4C8F4 Internal BINS (3:Real Number,2:Real Number,1:Real Number) 4C944 ''xmax' (Local Name) 4C955 ''N' (Local Name) 4CF55 ''EnvOK' (Local Name) 4CF68 ''EXITFCN' (Local Name) 4D1AA Internal GRAPH 4D30D ''EnvOK' (Local Name) 4D352 ''EnvOK' (Local Name) 4D36F ''EnvOK' (Local Name) 4E875 Internal LABEL 4F011 Internal PVIEW (1:Complex Number) 4F02F Internal PVIEW (1:List) 4F0AC Internal PX->C (1:List) 4F179 Internal C->PX (1:Complex Number) 4F37C Internal STO (2:Graphic,1:PICT) 4F3D1 Convert level 1 and 2 Binary Integers to System Binary 4F3EF Internal PIXON (1:Complex Number) 4F458 Internal PIXON (1:List) 4F471 Internal PIXOFF (1:Complex Number) 4F48A Internal PIXOFF (1:List) 4F4A3 Internal PIX? (1:Complex Number) 4F4BC Internal PIX? (1:List) 4F525 Internal LINE (2:List,1:List) 4F539 Internal TLINE (2:List,1:List) 4F584 Internal LINE (2:Complex Number,1:Complex Number) 4F598 Internal TLINE (2:Complex Number,1:Complex Number) 4F665 Internal BOX (2:List,1:List) 4F688 Internal BOX (2:Complex Number,1:Complex Number) 4F6A1 Internal BLANK (2:Binary Integer,1:Binary Integer) 4F6BA Internal GOR/GXOR (4:True/False,3:Graphic,2:List,1:Graphic) 4F6F6 Internal GOR/GXOR (4:True/False,3:Graphic,2:Complex Number,1:Graphic) 4F741 Internal GOR/GXOR (4:True/False,3:PICT,2:Complex Number/List,1:Graphic) 4F8D1 Internal + (2:Graphic,1:Graphic) 4F999 Internal REPL (3:Graphic,2:List,1:Graphic) 4F9F3 Internal REPL (3:Graphic,2:Complex Number,1:Graphic) 4FA2F Internal REPL (3:PICT,2:List/Complex Number,1:Graphic) 4FA7A Internal REPL (3:List,2:Real Number,1:List) 4FAF7 Internal REPL (3:String,2:Real Number,1:String) 4FB74 Internal SUB (3:Graphic,2:List,1:List) 4FBC4 Internal SUB (3:Graphic,2:Complex Number,1:Complex Number) 4FBF6 Internal SUB (3:PICT,2/1:List or Complex Number) 4FC28 Internal NEG (1:Graphic) 4FC3C Internal NEG (1:PICT) 4FC5F Internal ARC (4:Complex Number,3:Real Number,2:Real Number,1:Real Number) 4FD2C Internal ARC (4:List,3:Binary Integer,2:Real Number,1:Real Number) 4FF9D ''xe' (Local Name) 4FFAA ''ye' (Local Name) 4FFB7 ''x' (Local Name) 4FFC2 ''y' (Local Name) 4FFCD ''xc' (Local Name) 4FFDA ''yc' (Local Name) 4FFE7 ''r2' (Local Name) 4FFF4 ''left' (Local Name) 50005 ''up' (Local Name) 50012 ''exit' (Local Name) 503C5 XFER: Internal TEXT 503D4 Internal LCD-> 50438 Internal ->LCD (1:Graphic) 5046A Internal CLLCD 5048D Internal ->GROB (2:Any,1:Real Number) 50578 get GROB dimensions (2:Rows,1:Columns) 50D3E ''PlotEnv' (Local Name) 50FCE 'X' (Global Name) 50FE6 'Y' (Global Name) 51148 validate pop TOS is PICT (Bad Argument Type) 51288 'PPAR' (Global Name) 51300 place SCATTER on the stack, do not call 51314 place HISTOGRAM (XLIB 2 226) on the stack, do not call 51328 place BAR (XLIB 2 227) on the stack, do not call 51436 's1' (Global Name) 5179E push GROB dimensions (2:Rows,1:Columns) 5187F get PICT dimensions (2:Rows,1:Columns) 5190B ''PlotEnv' (Local Name) 5196A (-1,0) 5198F Internal IM (1:Real Number) 519A3 Internal RE (1:Complex Number) 519B7 Internal IM (1:Complex Number) 51B70 Internal NEG (1:Complex Number) 51BB2 Internal CONJ (1:Complex Number) 51BD0 Internal + (2:Complex Number,1:Real Number) 51BF8 Internal + (2:Real Number,1:Complex Number) 51C16 Internal + (2:Complex Number,1:Complex Number) 51CD4 Internal - (2:Real Number,1:Complex Number) 51CE8 Internal - (2:Complex Number,1:Real Number) 51CFC Internal - (2:Complex Number,1:Real Number) 51D4C Internal * (2:Complex Number,1:Real Number) 51D60 Internal * (2:Real Number,1:Complex Number) 51D88 Internal * (2:Complex Number,1:Complex Number) 51E19 Internal / (2:Real Number,1:Complex Number) 51E64 Internal / (2:Complex Number,1:Real Number) 51EC8 Internal / (2:Complex Number,1:Complex Number) 51EFA Internal INV (1:Complex Number) 52062 Internal ABS (1:Complex Number) 52099 Internal ARG (1:Complex Number) 520CB Internal SIGN (1:Complex Number) 52107 Internal sqrt (1:Complex Number) 52193 Internal EXP (1:Complex Number) 521E3 Internal LN (1:Complex Number) 522BF Internal LOG (1:Complex Number) 52305 Internal ALOG (1:Complex Number) 52342 Internal ^ (2:Real Number,1:Complex Number) 52360 Internal ^ (2:Complex Number,1:Real Number) 52374 Internal ^ (2:Complex Number,1:Complex Number) 524AF (0,0) 524F7 (1,0) 52530 Internal SIN (1:Complex Number) 52571 Internal COS (1:Complex Number) 525B7 Internal TAN (1:Complex Number) 5262F Internal SINH (1:Complex Number) 52648 Internal COSH (1:Complex Number) 5265C Internal TANH (1:Complex Number) 52675 Internal ATAN (1:Complex Number) 5267F (0,1) 526AE (0,-1) 527EB Internal ATANH (1:Complex Number) 52804 Internal ASIN (1:Complex Number) 5281D Internal ASINH (1:Complex Number) 52836 Internal ACOSH (1:Complex Number) 52863 Internal ACOS (1:Complex Number) 53725 Set user flag (1:System Binary) 53731 Set system flag (1:System Binary) 53755 Clear user flag (1:System Binary) 53761 Clear system flag (1:System Binary) 53778 User flag set? (1:System Binary) -> True/False 53784 System flag set? (1:System Binary) -> True/False 53807 XFER: Error Bad Arg Val 5380E if pop TOS = True then push 1 else push 0 53842 if Last Arguments flag is clear then ??? 53C37 Internal HEX 53C43 Internal BIN 53C4F Internal OCT 53C5B Internal DEC 53C96 Internal STWS (1:Real Number) 53CAA Internal STWS (1:System Binary) 53CF0 Internal RCWS 53D04 Internal AND (2:Binary Integer,1:Binary Integer) 53D15 Internal OR (2:Binary Integer,1:Binary Integer) 53D26 Internal XOR (2:Binary Integer,1:Binary Integer) 53D4E Internal NOT (1:Binary Integer) 53D5E Internal SL 53D6E Internal SLB 53D81 Internal SR 53D91 Internal SRB 53DA4 Internal RR 53DE1 Internal RRB 53E0C Internal RL 53E3B Internal RLB 53E65 Internal ASR 53EA0 Internal + (2:Binary Integer,1:Binary Integer) 53EB0 Internal - (2:Binary Integer,1:Binary Integer) 53EC3 Internal NEG (1:Binary Integer) 53ED3 Internal * (2:Binary Integer,1:Binary Integer) 53F05 Internal / (2:Binary Integer,1:Binary Integer) 53F69 XFER: Save Regs D,B,D1,D0 (uses C) 53F70 XFER: load regs D,B,D1,D0 (uses C) 54021 Let A.A = (@706C6 & #3F) + 1 54039 Internal RCWS -> System Binary 540BB get contents 5429F Internal / (2:Real Number,1:Binary Integer) 542BD Internal / (2:Binary Integer,1:Real Number) 542D1 Internal * (2:Real Number,1:Binary Integer) 542EA Internal * (2:Binary Integer,1:Real Number) 542FE Internal - (2:Real Number,1:Binary Integer) 5431C Internal - (2:Binary Integer,1:Real Number) 54330 Internal + (2:Real Number,1:Binary Integer) 54349 Internal + (2:Binary Integer,1:Real Number) 5435D Internal B->R 543F9 Internal R->B 54419 push A (Real) as Binary Integer 544D9 Internal == (2:Binary Integer,1:Binary Integer) 544EC Internal != (2:Binary Integer,1:Binary Integer) 54500 Internal > (2:Binary Integer,1:Binary Integer) 5452C Internal >= (2:Binary Integer,1:Binary Integer) 5453F Internal <= (2:Binary Integer,1:Binary Integer) 54552 Internal < (2:Binary Integer,1:Binary Integer) 54565 Internal IFTE (3:Symbolic,2/1:Real/Complex/Symbolic) 5456F ''tcls' (Local Name) 54580 ''fcls' (Local Name) 5460E ''tcls' (Local Name) 54624 ''fcls' (Local Name) 5465D ''tcls' (Local Name) 5466E ''fcls' (Local Name) 54954 Internal delta (complete derivative) (2:Symbolic,1:Symbolic) 549CC { ''dvar' } 549DB ''dvar' (Local Name) 54CDB Internal MINR (1.E-499) 54D12 Internal MAXR (9.99999999999E499) 54D35 Internal pi (3.14159265359) 54D58 Internal i (0,1) 54D7B Internal e (2.71828182846) 54DD0 ''xSYMfcn' (Local Name) 54DE7 ''xfcn' (Local Name) 54EA0 Internal RE (1:Symbolic) 54EB9 Internal IM (1:Symbolic) 54ED2 Internal NOT (1:Symbolic) 54EEB Internal NEG (1:Symbolic) 54F04 Internal ABS (1:Symbolic) 54F1D Internal CONJ (1:Symbolic) 54F36 Internal INV (1:Symbolic) 54F4F Internal ARG (1:Symbolic) 54F68 Internal SIGN (1:Symbolic) 54F81 Internal sqrt (1:Symbolic) 54F9A Internal SQ (1:Symbolic) 54FB3 Internal SIN (1:Symbolic) 54FCC Internal COS (1:Symbolic) 54FE5 Internal TAN (1:Symbolic) 54FFE Internal SINH (1:Symbolic) 55017 Internal COSH (1:Symbolic) 55030 Internal TANH (1:Symbolic) 55049 Internal ASIN (1:Symbolic) 55062 Internal ACOS (1:Symbolic) 5507B Internal ATAN (1:Symbolic) 55094 Internal ASINH (1:Symbolic) 550AD Internal ACOSH (1:Symbolic) 550C6 Internal ATANH (1:Symbolic) 550DF Internal EXP (1:Symbolic) 550F8 Internal LN (1:Symbolic) 55111 Internal LOG (1:Symbolic) 5512A Internal ALOG (1:Symbolic) 55143 Internal LNP1 (1:Symbolic) 5515C Internal EXPM (1:Symbolic) 55175 Internal ! (1:Symbolic) 5518E Internal IP (1:Symbolic) 551A7 Internal FP (1:Symbilic) 551C0 Internal FLOOR (1:Symbolic) 551D9 Internal CEIL (1:Symbolic) 551F2 Internal XPON (1:Symbolic) 5520B Internal MANT (1:Symbolic) 55224 Internal D->R (1:Symbolic) 5523D Internal R->D (1:Symbolic) 55256 Internal UBASE (1:Symbolic) 5526F Internal UVAL (1:Symbolic) 5566B ''oth' (Local Name) 55783 ''scl' (Local Name) 55792 ''xSYMfcn' (Local Name) 557A9 ''xfcn' (Local Name) 55800 ''xSYMfcn' (Local Name) 55817 ''xfcn' (Local Name) 55927 Internal = (2/1:all combinations) 5599A Internal AND (2:Symbolic,1:Real Number) 559B3 Internal AND (2:Real Number,1:Symbolic) 559CC Internal AND (2:Symbolic,1:Symbolic) 559E5 Internal OR (2:Symbolic,1:Real Number) 559FE Internal OR (2:Real Number,1:Symbolic) 55A17 Internal OR (2:Symbolic,1:Symbolic) 55A30 Internal XOR (2:Symbolic,1:Real Number) 55A49 Internal XOR (2:Real Number,1:Symbolic) 55A62 Internal XOR (2:Symbolic,1:Symbolic) 55A7B Internal == (2:Symbolic,1:Real Number/Complex Number/Unit) 55A94 Internal == (2:Complex Number,1:Real Number/Complex Number/Unit) 55AAD Internal == (2:Symbolic,1:Symbolic) 55AC6 Internal != (2:Symbolic,1:Real Number/Complex Number/Unit) 55ADF Internal != (2:Real Number/Complex Number/Unit,1:Symbolic) 55AF8 Internal != (2:Symbolic,1:Symbolic) 55B11 Internal < (2:Symbolic,1:Real Number/Unit) 55B2A Internal < (2:Real Number/Unit,1:Symbolic) 55B43 Internal < (2:Symbolic,1:Symbolic) 55B5C Internal > (2:Symbolic,1:Real Number/Unit) 55B75 Internal > (2:Real Number/Unit,1:Symbolic) 55B8E Internal > (2:Symbolic,1:Symbolic) 55BA7 Internal <= (2:Symbolic,1:Real Number/Unit) 55BC0 Internal <= (2:Real Number/Unit,1:Symbolic) 55BD9 Internal <= (2:Symbolic,1:Symbolic) 55BF2 Internal >= (2:Symbolic,1:Real Number/Unit) 55C0B Internal >= (2:Real Number/Unit,1:Symbolic) 55C24 Internal >= (2:Symbolic,1:Symbolic) 55C3D Internal % (2:Symbolic,1:Real Number/Unit) 55C56 Internal % (2:Real Number/Unit,1:Symbolic) 55C6F Internal % (2:Symbolic,1:Symbolic) 55C88 Internal %CH (2:Symbolic,1:Real Number/Unit) 55CA1 Internal %CH (2:Real Number/Unit,1:Symbolic) 55CBA Internal %CH (2:Symbolic,1:Symbolic) 55CD3 Internal %T (2:Symbolic,1:Real Number/Unit) 55CEC Internal %T (2:Real Number/Unit,1:Symbolic) 55D05 Internal %T (2:Symbolic,1:Symbolic) 55D1E Internal COMB (2:Symbolic,1:Real Number) 55D37 Internal COMB (2:Real Number,1:Symbolic) 55D50 Internal COMB (2:Symbolic,1:Symbolic) 55D69 Internal PERM (2:Symbolic,1:Real Number) 55D82 Internal PERM (2:Real Number,1:Symbolic) 55D9B Internal PERM (2:Symbolic,1:Symbolic) 55DB4 Internal RND (2:Symbolic,1:Real Number) 55DCD Internal RND (2:Real Number/Complex Number/Array/Unit,1:Symbolic) 55DE6 Internal RND (2:Symbolic,1:Symbolic) 55DFF Internal TRNC (2:Symbolic,1:Real Number) 55E18 Internal TRNC (2:Real Number/Complex Number/Array/Unit,1:Symbolic) 55E31 Internal TRNC (2:Symbolic,1:Symbolic) 55E4A Internal MAX (2:Symbolic,1:Real Number/Unit) 55E63 Internal MAX (2:Real Number/Unit,1:Symbolic) 55E7C Internal MAX (2:Symbolic,1:Symbolic) 55E95 Internal MIN (2:Symbolic,1:Real Number/Unit) 55EAE Internal MIN (2:Real Number/Unit,1:Symbolic) 55EC7 Internal MIN (2:Symbolic,1:Symbolic) 55EE0 Internal ^ (2:Symbolic,1:Real Number/Complex Number/Unit) 55EF9 Internal ^ (2:Real Number/Complex Number/Unit,1:Symbolic) 55F12 Internal ^ (2:Symbolic,1:Symbolic) 55F2B Internal + (2:Symbolic,1:Real Number/Complex Number/Unit) 55F44 Internal + (2:Real Number/Complex Number/Unit,1:Symbolic) 55F5D Internal + (2:Symbolic,1:Symbolic) 55F76 Internal - (2:Symbolic,1:Real Number/Complex Number/Unit) 55F8F Internal - (2:Real Number/Complex Number/Unit,1:Symbolic) 55FA8 Internal - (2:Symbolic,1:Symbolic) 55FC1 Internal * (2:Symbolic,1:Real Number/Complex Number/Unit) 55FDA Internal * (2:Real Number/Complex Number/Unit,1:Symbolic) 55FF3 Internal * (2:Symbolic,1:Symbolic) 5600C Internal / (2:Symbolic,1:Real Number/Complex Number/Unit) 56025 Internal / (2:Real Number/Complex Number/Unit,1:Symbolic) 5603E Internal / (2:Symbolic,1:Symbolic) 56057 Internal MOD (2:Symbolic,1:Real Number) 56070 Internal MOD (2:Real Number,1:Symbolic) 56089 Internal MOD (2:Symbolic,1:Symbolic) 56859 'IERR' (Global Name) 56949 Internal sigma (4:Symbolic,3:Symbolic,2:Symbolic,1:Any) 56976 ''sumexpr' (Local Name) 5698D ''sumvar' (Local Name) 56A06 Internal sigma (4:Symbolic,3:Symbolic,2:Real Number,1:Any) 56A4C Internal sigma (4:Symbolic,3:Real Number,2:Symbolic,1:Any) 56AC9 Internal sigma (4:Symbolic,3:Real Number,2:Real Number,1:Any) 56F0B ''dv' (Local Name) 5720B ''nm' (Local Name) 57218 ''op' (Local Name) 572A2 Internal ISOL (2:Symbolic,1:Global Name) 578E2 ''ni' (Local Name) 578EF ''ns' (Local Name) 5793F 'n0' (Global Name) 5795D 's0' (Global Name) 57A0C Internal EXPAN (1:Real Number/Complex Number/Symbolic) 57D90 Internal COLCT (1:Real Number/Complex Number/Symbolic) 57EF3 ''*s' (Local Name) 58149 ''+s' (Local Name) 58D75 Internal SHOW (2:Symbolic,1:Global Name/Local Name) 58DB6 ''fl' (Local Name) 59115 ''nmls' (Local Name) 591AD Internal QUAD (2:Symbolic,1:Global Name) 592C0 ''c' (Local Name) 592CB ''b' (Local Name) 592D6 ''a' (Local Name) 59304 's1' (Global Name) 59517 ''n' (Local Name) 59522 ''prog' (Local Name) 595DD Internal TAYLR (3:Symbolic,2:Global Name,1:Real Number) 59646 ''n' (Local Name) 59F91 Internal SIZE (1:Symbolic) 5A60F { ''piflag' } 5A614 ''piflag' (Local Name) 5A665 ''d' (Local Name) 5A670 ''r' (Local Name) 5A761 ''d' (Local Name) 5A76C ''R' (Local Name) 5A777 ''est' (Local Name) 5A786 ''X' (Local Name) 5A791 ''T' (Local Name) 5AAE5 ''bnds' (Local Name) 5D67D ''which' (Local Name) 5D690 ''op1' (Local Name) 5D69F ''op2' (Local Name) 5FDC1 ''ct' (Local Name) 5FDCE ''pp' (Local Name) 5FDDB ''ep' (Local Name) 6080B ''reg' (Local Name) 6081A ''sur' (Local Name) 60829 ''cts' (Local Name) 60838 ''sun' (Local Name) 60847 ''mlg' (Local Name) 60856 ''ckd' (Local Name) 60865 ''prd' (Local Name) 60874 ''prp' (Local Name) 60883 ''rhs' (Local Name) 60BE9 ''patternls' (Local Name) 60C04 ''compos' (Local Name) 60C19 ''varls' (Local Name) 60C4F ''patternls' (Local Name) 60C6A ''compos' (Local Name) 60CCA ''compos' (Local Name) 60D7F ''varls' (Local Name) 60E8C '&1' (Local Name) 60E97 '&2' (Local Name) 60EA2 '&3' (Local Name) 60EAD '&4' (Local Name) 60F9B drop level two object 60FBB Internal 4 ROLL 60FD8 Internal 5 ROLL 6112A drop level two and three objects 611FE Internal 3 PICK 618F7 if pop TOS = True, then DROP, do next and return, else skip next 6194B if pop TOS = True, then pop and return 61993 if pop TOS = True, then do next/return, else skip next 6199F MC XFER: return and execute the next token in this stream 619A6 XFER: skip next RPL token and continue RPL 619AD if pop TOS = True, skip next, else do next and return 619BC if pop TOS != True, then skip next token 61A02 if pop TOS = True, then set carry flag 61A2C if pop TOS != True, then return 61A3B if pop TOS = True, then return 61A47 XFER: RPL RETURN 61A4E continue RPL 61AD8 if pop TOS = True, then do/skip, else skip/do 61B72 if pop TOS != True, then DROP 61C1C allocate nibbles (2:sized object,1:System Binary) 61D3A '' (Local Name) 61F1B if pop TOS = True, then SWAP 62035 Internal DUP (?) 6205B MC: TYPE(pop TOS) = C -> True/False 62063 Check Prolog -> True/False 62080 Replace TOS with True 620A0 Replace TOS with False 620B9 MC: restore regs and push True 620D2 MC: restore regs and push False 62115 test TYPE(TOS) = Local Name, push True/False 62169 test TYPE(TOS) = Real Number, push True/False 6216E test TYPE(TOS) = Real Number, replace TOS with True/False 621C2 test TYPE(TOS) = Directory, replace TOS with True/False 621FC test TYPE(TOS) = Graphic, push True/False 6222B test TYPE(TOS) = Tagged, replace TOS with True/False 6223B Check for Real Array -> True/False 6249E MC XFER: pop TOS (System Binary) -> A.A 624B3 XFER: save regs D,B,D1,D0 (uses C) 6256A Internal add 3 (1:System Binary) 6257A Internal add 4 (1:System Binary) 6258A Internal add 5 (1:System Binary) 6259A Internal add 6 (1:System Binary) 625AA Internal add 7 (1:System Binary) 625BA Internal add 8 (1:System Binary) 625CA Internal add 9 (1:System Binary) 625DA Internal add 10 (1:System Binary) 625EA Internal add 12 (1:System Binary) 625FA Internal subtract 3 (1:System Binary) 6260A Internal subtract 4 (1:System Binary) 6261A Internal subtract 5 (1:System Binary) 6262A Internal subtract 6 (1:System Binary) 62636 MC: add C.A to TOS and continue RPL (1:System Binary) 6264E Internal multiply by 10 (1:System Binary) 62674 Internal multiply by 8 (1:System Binary) 62691 Internal multiply by 6 (1:System Binary) 626AE Return and execute the sixth token in this stream 626DC Return and execute the fourth token in this stream 626E5 Return and execute the third token in this stream 626EE Return and execute the second token in this stream 626F7 Internal DUP and add two (1:System Binary) 62747 Internal SWAP and DUP 627BB Internal DUP and SIZE (1:String) -> (2:String,1:System Binary) 62829 XFER: pop 2 System Binary -> A.A,C.A 6289B if TOS > TOS-1 (System Binary) -> True/False 62986 Return, if pop TOS = True, then do next/return, else skip next 629A1 Return, if pop TOS = True, then skip next, else do next/return 62A34 Internal RCL (1:Global Name/Local Name) -> Contents,True/False 62B0B Internal DROP2 and False 62B88 Internal LIST-> (1:List) -> (N:...,1:Any) (no count) 62BC4 Internal 7 ROLLD (7:...,1:Any) 62BF1 Internal *10 (1:Real Number) 62C41 Internal LIST-> (1:List) -> (N:...,1:System Binary) (DUP'd count) 62C69 Internal NEWOB and SWAP 62C7D Internal ROT and DUP2 (3:Any,2:Any,1:Any) 62CA5 Internal ROT and OVER 62CB9 Internal DUP/DUP 62CCD Internal OVER and DUP 62CE1 Internal R->SB and DUP 62D31 Internal OVER and SWAP 62D45 Internal ROLL and SWAP (N:...,1:System Binary) 62D59 Internal "" and SWAP 62D81 if TOS-1 <= TOS (Real Number) then SWAP 62D9F if pop TOS != True then SWAP 62E26 Internal add 1 and SWAP (2:Any,1:System Binary) 62E3A Internal <0h> and SWAP 62E4E Internal sub 1, <1h> and SWAP (1:System Binary) 62E67 Internal <1h> and SWAP 62E7B Internal R->SB and SWAP (1:Real Number) 62E8F Internal R->LR and SWAP (1:Real Number) 62F1B if pop TOS = True, then SWAP 62F43 if pop TOS = True, then DROP, else SWAP/DROP 62F5C if pop TOS = True, then SWAP/DROP, else DROP 62F75 Internal DROPN and DROP (1:System Binary) 62F89 Internal ROLL and DROP (N:...,1:System Binary) 62FB1 Internal DUP and ROT 62FC5 Internal DROP and ROT 62FD9 Internal subtract one and ROT (1:System Binary) 63029 Internal DROP and OVER 63079 <0h> and internal OVER 630DD Internal DUP and PICK (N:...,1:System Binary) 630F1 Internal DUP and ROLL (N:...,1:System Binary) 63119 Internal 8 ROLLD 6312D Internal 10 ROLLD 6317D if pop TOS = True, then internal UVAL 631A5 Internal subtract one and ->LIST (N:...,1:System Binary) 631B9 Internal 2 ->LIST 631CD Internal 3 ->LIST 631E1 Internal DUP and LIST-> 631F5 Internal SWAP and LIST-> 632A9 Internal SWAP and R->C (2:Real Number,1:Real Number) 632BD Unevaluated No Operation (continue RPL) 632D1 ->Program and EVAL (N:...,1:System Binary) 63399 if TOS-1 > TOS (System Binary), then skip next token 633B2 Internal ELSE 63411 Internal DUP and push current loop counter as System Binary 63425 Internal SWAP and push current loop counter as System Binary 63439 Internal OVER and push current loop counter as System Binary 6344D Internal SWAP and next (internal loop) 63466 Internal DROP and next (internal loop) 6347F Internal DUP and for 0 to (TOS)-1 (1:System Binary) 634F7 Internal True and False 6350B Internal False and True 6351F <0h> and False 63533 <1h> and False 635C4 Internal != (2:Any,1:Any) -> True/False 6365F Internal OVER and if TOS-1 < TOS (System Binary) -> True/False 63673 if TOS < 3 (System Binary) -> True/False 63687 Internal DUP and if TOS < 7 (System Binary) -> True/False 636C8 if TOS != 2 (System Binary) -> True/False 636DC Internal OVER and if TOS-1 > TOS (System Binary) -> True/False 636F0 if TOS > 1 (System Binary) -> True/False 637B8 Internal ROT and add one (System Binary) 637F4 Internal DROP and subtract one (System Binary) 6386C Internal SWAP and DUP2 63A29 Store TOS into ''dvar' (Local Name) 63A3D Store TOS into ''LNAME' (Local Name) 63A6F Internal DUP and if TOS is { } -> True/False 63A88 Internal DUP and <0h> 63A9C Internal DUP and <1h> 63B19 if pop TOS != True, then Bad Argument Value 63B2D if TYPE(TOS) != Real Number, then Bad Argument Type 63B46 if pop TOS != True, then Bad Argument Type 63B5A Unevaluated * (multiply) 63B6E Unevaluated delta (stepwise derivative) 63B96 Internal SB->LR (1:System Binary) 63C04 get GROB columns 63C2C Internal SWAP and 4 ROLL 63C40 Internal DUP2 and 5 ROLL 63CFE if SAME, then do next/return, else skip next 63D3A if TOS-1 = TOS (System Binary), then skip next, else do next and return 63D67 if TOS-1 > TOS (System Binary), then do next/return, else skip next 641CC do DUP / continue RPL ML thread 64775 Internal DTAG (1:Any) 647A2 Internal DTAG level 2 object 64B12 <2Ch> 64B1C <2Dh> 64B26 <2Eh> 64B30 <2Fh> 64B3A <30h> 64B44 <31h> 64B4E <32h> 64B58 <33h> 64B62 <34h> 64B6C <35h> 64B76 <36h> 64B80 <37h> 64B8A <38h> 64B94 <39h> 64B9E <3Ah> 64BA8 <3Bh> 64BB2 <3Ch> 64BBC <3Dh> 64BC6 <3Eh> 64BD0 <3Fh> 64BDA <40h> 64BE4 <41h> 64BEE <42h> 64BF8 <43h> 64C02 <44h> 64C0C <45h> 64C16 <46h> 64C20 <4Ah> 64C2A <4Fh> 64C34 <50h> 64C3E <51h> 64C48 <52h> 64C52 <53h> 64C5C <54h> 64C66 <55h> 64C70 <56h> 64C7A <57h> 64C84 <5Bh> 64C8E <60h> 64C98 <61h> 64CA2 <62h> 64CAC <64h> 64CB6 <65h> 64CC0 <6Fh> 64CCA <70h> 64CD4 <71h> 64CDE <72h> 64CE8 <73h> 64CF2 <74h> 64CFC <75h> 64D06 <7Ah> 64D10 <80h> 64D1A <82h> 64D24 <83h> 64D2E <8Fh> 64D38 <91h> 64D42 <92h> 64D4C <9Ah> 64D56 <9Eh> 64D60 <9Fh> 64D6A 64D74 64D7E 64D88 64D92 64D9C 64DA6 64DB0 64DBA 64DC4 64DCE 64DD8 64DE2 64DEC 64DF6 64E00 64E0A 64E14 64E1E 64E28 64E32 <100h> 64E3C <102h> 64E46 <106h> 64E50 <107h> 64E5A <110h> 64E64 <111h> 64E6E <123h> 64E78 <124h> 64E82 <131h> 64E8C <132h> 64E96 <133h> 64EA0 <134h> 64EAA <135h> 64EB4 <136h> 64EBE <137h> 64EC8 <138h> 64ED2 <139h> 64EDC <13Ah> 64EE6 <13Bh> 64EF0 <13Dh> 64EFA <13Eh> 64F04 <151h> 64F0E <200h> 64F18 <205h> 64F22 <311h> 64F2C <411h> 64F36 <412h> 64F40 <444h> 64F4A <451h> 64F54 <452h> 64F5E <510h> 64F68 <511h> 64F72 <550h> 64F7C <610h> 64F86 <650h> 64F90 <700h> 64F9A <861h> 64FA4 <862h> 64FAE <865h> 64FB8 <86Eh> 64FC2 64FCC 64FD6 64FE0 64FEA 64FF4 64FFE 65008 65012 6501C 65026 65030 6503A 65044 6504E 65058 65062 6506C 65076 65080 6508A 65094 <70000h> 6509E 650A8 2.71828182846 650BD .5 650D2 -.5 650E7 10 650FC 180 65111 200 65126 360 6513B 400 69A97 ''Radix' (Local Name) 69AAA ''KeysOK?' (Local Name) 69AC1 ''ExprLit' (Local Name) 69AD8 ''BuffW' (Local Name) 69AEB ''BuffH' (Local Name) 69AFE ''SaveBlank' (Local Name) 69B19 ''ManOp' (Local Name) 69B2C ''nohalt' (Local Name) 69B41 ''AppMode' (Local Name) 69B58 ''NameGrob' (Local Name) 69B71 ''EXITFCN' (Local Name) 69B88 ''FontGauge' (Local Name) 69BA3 ''LE' (Local Name) 69BB0 ''LB' (Local Name) 69BBD ''TE' (Local Name) 69BCA ''FormEnvOK' (Local Name) 69BE5 ''prow' (Local Name) 69BF6 ''pcol' (Local Name) 69C07 ''cursy' (Local Name) 69C1A ''cursx' (Local Name) 69C2D ''ttt' (Local Name) 69C3C ''source' (Local Name) 69C51 ''ofs' (Local Name) 69C60 ''tok' (Local Name) 69C6F ''rbv' (Local Name) 69C7E ''idfflg' (Local Name) 69C93 ''tmpop' (Local Name) 69CA6 ''tmppdat' (Local Name) 69CBD ''ploc' (Local Name) 69CCE ''bv' (Local Name) 69CDB ''unbound' (Local Name) 70200 Time Init 704EA key buffer 70551 pointer to menu display 7055B pointer to stack display 70565 pointer to PICT 7056F heap pointer 70574 saved B (return stack pointer) 70579 saved D1 (RPL stack pointer) 7057E bottom (start) of stack (grows down) 70583 local var ptr addr 70588 pointer to current loop information 7058D ?? menu keys ?? 70592 begin HOME dir 70597 end HOME directory (points to 00000 prob for ATTACH) 7059C pointer to current dir 705AB pointer to alarm list 705B0 saved D0 (RPL thread pointer) 705B5 temp save A.A 705BA save arg ptrs (15 Nibbles) 705D9 ROM: ML Version Output 7065A Last RPL Token 7066E saved D (free stack space) 70673 Last Error Code 7069F stack size 706A4 Random Seed 706C5 RPL System Flags 706D5 RPL User Flags 706FD # arg ptrs @ 705BA??? 706FF Save Last Err# 70713 GROB for displaying lines of stack. Enough mem for 19 char bitmap 70844 GROB for menu display: 8 by 131 70968 GROB for the rest of the screen: 56 by 131 710EC GROB for plot display: variable size 71AD8 ASCIC: Version 71AF6 ASCIC: Copyright 72000 Message table for library 000 (XLIB 0) 72281 Message table for library 00A (XLIB 10) 7232C Message table for library 00C (XLIB 12) 7260A Message table for library 00D (XLIB 13) 726A5 Message table for library 00B (XLIB 11) 72704 Message table for library 001 (XLIB 1) 72DCF Message table for library 002 (XLIB 2) 72F1E Message table for library 003 (XLIB 3) 72FE6 Message table for library 006 (XLIB 6) 736F9 Message table for library 005 (XLIB 5) 7427C Hash table for library 700 (XLIB 1792) 7448A Hash table for library 002 (XLIB 2) 7F9B5 'HOMEDIR' (Global Name) 7FED7 ''A' (Local Name) Download for hp48.ca succeeded.