EE26 Digital Logic Systems

The upper nibble, %0110, is to be converted to $36 (the ASCII code for character ā€œ6ā€) and the lower nibble, %1101, is to be converted to $44 (the ASCII code for character ā€œDā€). The subroutine gets the binary value in Register B and returns two ASCII hex digits in Register D. For example, if B = %0110 1101, then Register D will return $3644. ................
................