| Purpose: | Place an ASCII space ' ' (32 = 0x20) and one other printable
character into the COM1 the Transmit Buffer. The routines' names indicate the order of the characer output. |
| Assumes: | Nothing. |
| Passed: | R24 CHAR cValue the character to print, 7 to 254. |
| Returns: | Nothing. |
| Alters: | R24, the FLAGs (SREG), and the COM1 Transmit buffer |
| Example: |
|
| Test it: |
|
| Notes: | Both of these routines utilize the PrintCHAR and PrintSpace System Functions. |
| "Printable" means a character with a value between 7 to 254, inclusive. (see PrintCHAR for details.) | |
| Dropin: (setup code) |
; Setup for the Print1CHARand1Space() call: ; Passed: R24 CHAR cPrint character to print ; Returns: Nothing. ; Alters: R24, the FLAGs and the COM1 Transmit Buffer ; Setup for the Print1SpaceAnd1CHAR() call: ; Passed: R24 CHAR cPrint character to print ; Returns: Nothing. ; Alters: R24, the FLAGs, and the COM1 Transmit Buffer |
| Also see: | The PrintCHAR and PrintSpace System Functions. |