.PrintNumber CLC \ Convert the number in A into an ASCII digit by adding ADC #'0' \ ASCII "0" \ Fall into PrintDigit to print the digit in AName: PrintNumber [Show more] Type: Subroutine Category: Text Summary: Print a number as a single digit, printing zero as a capital "O"Context: See this subroutine in context in the source code References: This subroutine is called as follows: * Print2DigitBCD calls PrintNumber
Arguments: A The number to be printed (0 to 9)