home *** CD-ROM | disk | FTP | other *** search
/ CP/M / CPM_CDROM.iso / jsage / zsus / z3help / y.lbr / ZSLIB4.HZP / ZSLIB4.HLP
Encoding:
Text File  |  1991-10-09  |  3.0 KB  |  107 lines

  1.  Byte as 1 or 2 Hex Characters             - PAFHC, LAFHC, MAFHC, SAFHC
  2.  Byte as 1 or 2 Hex Chars (Leading Spaces) - PAHC, LAHC, MAHC, SAHC
  3.  Binary Number as 2 Decimal Characters     - PHL2DC, LHL2DC, MHL2DC, SHL2DC
  4.  Binary Number as 3 Decimal Characters     - PHL3DC, LHL3DC, MHL3DC, SHL3DC
  5.  Binary Number as 4 Decimal Characters     - PHL4DC, LHL4DC, MHL4DC, SHL4DC
  6.  Explanation of Switchable Output
  7. :
  8. PAFHC, LAFHC, SAFHC - Prints binary byte as 1 or 2 hex characters.
  9.  
  10.   ENTER: A = binary number.
  11.   EXIT:  None.
  12.   USES:  None.
  13.  
  14. MAFHC - Stores binary byte as 1 or 2 hex characters to memory.
  15.  
  16.   ENTER: A = binary number,
  17.          DE = address of memory buffer (2 bytes maximum).
  18.   EXIT:  DE = address of byte following output.
  19.   USES:  DE
  20.  
  21. Usage: PAFHC, console output; LAFHC, printer output; SAFHC, switchable 
  22. output.
  23. :
  24. PAHC, LAHC, SAHC - Prints binary number as 1 or 2 hex characters with 
  25. leading spaces.
  26.  
  27.   ENTER: A = binary number.
  28.   EXIT:  None.
  29.   USES:  None.
  30.  
  31. MAHC - Stores binary number as 1 or 2 hex characters with leading spaces to 
  32. memory.
  33.  
  34.   ENTER: A = binary number,
  35.          DE = address of memory buffer (2 bytes maximum).
  36.   EXIT:  DE = address of byte following output.
  37.   USES:  DE
  38.  
  39. Usage: PAHC, console output; LAHC, printer output; SAHC, switchable output.
  40. :
  41. PHL2DC LHL2DC, SHL2DC - Prints number as 2 decimal characters with leading 
  42. zeroes.
  43.  
  44.   ENTER: HL = binary number.
  45.   EXIT:  None.
  46.   USES:  None.
  47.  
  48. MHL2DC - Stores number as 2 decimal characters with leading zeroes to 
  49. memory.
  50.  
  51.   ENTER: HL = binary number,
  52.          DE = address of memory buffer (2 bytes).
  53.   EXIT:  DE = address of byte following output.
  54.   USES:  DE
  55.  
  56. Usage: PHL2DC, console output; LHL2DC, printer output; SHL2DC, switchable 
  57. output.
  58.  
  59. Output examples:         "00"
  60.                          "01"
  61.                          "10"
  62. :
  63. PHL3DC, LHL3DC, SHL3DC - Prints number as 3 decimal characters with leading 
  64. zeroes.
  65.  
  66.   ENTER: HL = binary number.
  67.   EXIT:  None.
  68.   USES:  None.
  69.  
  70. MHL3DC - Stores number as 3 decimal characters with leading zeroes to 
  71. memory.
  72.  
  73.   ENTER: HL = binary number,
  74.          DE = address of memory buffer (3 bytes maximum).
  75.   EXIT:  DE = address of byte following output.
  76.   USES:  DE
  77.  
  78. Usage: PHL3DC, console output; LHL3DC, printer output; SHL3DC, switchable 
  79. output.
  80.  
  81. Output examples:         "000"
  82.                          "001"
  83.                          "010"
  84. :
  85. PHL4DC, LHL4DC, SHL4DC - Prints number as 4 decimal characters with leading 
  86. zeroes.
  87.  
  88.   ENTER: HL = binary number.
  89.   EXIT:  None.
  90.   USES:  None.
  91.  
  92. MHL4DC - Stores number as 4 decimal characters with leading zeros to 
  93. memory.
  94.  
  95.   ENTER: HL = binary number,
  96.          DE = address of memory buffer (4 bytes).
  97.   EXIT:  DE = address of byte following output.
  98.   USES:  DE
  99.  
  100. Usage: PHL4DC, console output; LHL4DC, printer output; SHL4DC, switchable 
  101. output.
  102.  
  103. Output examples:         "0000"
  104.                          "0001"
  105.                          "0010"
  106. ::ZSLIBS
  107.