home *** CD-ROM | disk | FTP | other *** search
- Byte as 1 or 2 Hex Characters - PAFHC, LAFHC, MAFHC, SAFHC
- Byte as 1 or 2 Hex Chars (Leading Spaces) - PAHC, LAHC, MAHC, SAHC
- Binary Number as 2 Decimal Characters - PHL2DC, LHL2DC, MHL2DC, SHL2DC
- Binary Number as 3 Decimal Characters - PHL3DC, LHL3DC, MHL3DC, SHL3DC
- Binary Number as 4 Decimal Characters - PHL4DC, LHL4DC, MHL4DC, SHL4DC
- Explanation of Switchable Output
- :
- PAFHC, LAFHC, SAFHC - Prints binary byte as 1 or 2 hex characters.
-
- ENTER: A = binary number.
- EXIT: None.
- USES: None.
-
- MAFHC - Stores binary byte as 1 or 2 hex characters to memory.
-
- ENTER: A = binary number,
- DE = address of memory buffer (2 bytes maximum).
- EXIT: DE = address of byte following output.
- USES: DE
-
- Usage: PAFHC, console output; LAFHC, printer output; SAFHC, switchable
- output.
- :
- PAHC, LAHC, SAHC - Prints binary number as 1 or 2 hex characters with
- leading spaces.
-
- ENTER: A = binary number.
- EXIT: None.
- USES: None.
-
- MAHC - Stores binary number as 1 or 2 hex characters with leading spaces to
- memory.
-
- ENTER: A = binary number,
- DE = address of memory buffer (2 bytes maximum).
- EXIT: DE = address of byte following output.
- USES: DE
-
- Usage: PAHC, console output; LAHC, printer output; SAHC, switchable output.
- :
- PHL2DC LHL2DC, SHL2DC - Prints number as 2 decimal characters with leading
- zeroes.
-
- ENTER: HL = binary number.
- EXIT: None.
- USES: None.
-
- MHL2DC - Stores number as 2 decimal characters with leading zeroes to
- memory.
-
- ENTER: HL = binary number,
- DE = address of memory buffer (2 bytes).
- EXIT: DE = address of byte following output.
- USES: DE
-
- Usage: PHL2DC, console output; LHL2DC, printer output; SHL2DC, switchable
- output.
-
- Output examples: "00"
- "01"
- "10"
- :
- PHL3DC, LHL3DC, SHL3DC - Prints number as 3 decimal characters with leading
- zeroes.
-
- ENTER: HL = binary number.
- EXIT: None.
- USES: None.
-
- MHL3DC - Stores number as 3 decimal characters with leading zeroes to
- memory.
-
- ENTER: HL = binary number,
- DE = address of memory buffer (3 bytes maximum).
- EXIT: DE = address of byte following output.
- USES: DE
-
- Usage: PHL3DC, console output; LHL3DC, printer output; SHL3DC, switchable
- output.
-
- Output examples: "000"
- "001"
- "010"
- :
- PHL4DC, LHL4DC, SHL4DC - Prints number as 4 decimal characters with leading
- zeroes.
-
- ENTER: HL = binary number.
- EXIT: None.
- USES: None.
-
- MHL4DC - Stores number as 4 decimal characters with leading zeros to
- memory.
-
- ENTER: HL = binary number,
- DE = address of memory buffer (4 bytes).
- EXIT: DE = address of byte following output.
- USES: DE
-
- Usage: PHL4DC, console output; LHL4DC, printer output; SHL4DC, switchable
- output.
-
- Output examples: "0000"
- "0001"
- "0010"
- ::ZSLIBS