Open In App

8085 code to convert binary number to ASCII code

Last Updated : 08 Feb, 2024
Comments
Improve
Suggest changes
Like Article
Like
Report

Problem - Assembly level program in 8085 which converts a binary number into ASCII number. Example - Assumptions - Binary number which have to convert in ASCII value is stored at memory location 2050 and output will be displayed at memory location 3050 and 3051. Algorithm -

  1. Load the content of 2050.
  2. Then separate the LSB of the no. using ANI 0F instruction and MSB of the number by again loading the content of 2050 and rotate it by one bit 4 times to get reverse of the number and then again use ANI 0F to separate the digit.
  3. If the digit is more than or equal to 0A (in hexadecimal) then add 37 otherwise add 30 to convert into ASCII value (For checking the number is greater than or equal to A then use instruction: CPI 0A and then check the carry flag, if it is 0 then it means digit is greater than or equal to A and if 1 digit is less than A).
  4. Now Store the ASCII values of both the digits in 3050 and 3051 respectively.

Program - Main routine:

ADDRESSMNEMONICSCOMMENTS
2000LDA 2050A<-[2050]
2003CALL 2500go to address 2500
2006STA 3050A->[3050]
2009LDA 2050A<-[2050]
200CRLCRotate the number by one bit to left without carry
200DRLCRotate the number by one bit to left without carry
200ERLCRotate the number by one bit to left without carry
200FRLCRotate the number by one bit to left without carry
2010CALL 2500go to address 2500
2013STA 3051A->[3051]
2016HLTTerminates the program


Sub routine:

ADDRESSMNEMONICSCOMMENTS
2500ANI 0FA<-[A] AND 0F
2502CPI 0A[A]-0A
2504JNC 250AJump to [250A] if carryflag is 0
2507ADI 30A<-[A]+30
2509RETReturn to the next instruction from where subroutine address was called in main routine
250AADI 37A<-[A]+37
250CRETReturn to the next instruction from where subroutine address was called in main routine

Explanation - Main routine:

  1. LDA 2050: This instruction will load the number from address 2050 to the accumulator.
  2. CALL 2500: This instruction will stop executing the main routine instructions after it and will move to the subroutine address 2500 for performing the subtask and after performing subroutine instructions it will come back to mainroutine and execute the instructions after CALL 2500.
  3. STA 3050: This instruction will store the result (performed in subroutine) of Accumulator to address 3050.
  4. LDA 2050: This instruction will again load the number from address 2050 to the accumulator as the earlier loaded number is changed in accumulator.
  5. RLC: Rotate the contents of Accumulator by one bit left side without carry.
  6. RLC: Rotate the contents of Accumulator by one bit left side without carry.
  7. RLC: Rotate the contents of Accumulator by one bit left side without carry.
  8. RLC: Rotate the contents of Accumulator by one bit left side without carry. (Applying RLC 4 times it will reverse the contents of the Accumulator) 
     
  9. 9. CALL 2500: This instruction will stop executing the main routine instructions after it and will move to the subroutine address 2500 for performing the subtask and after performing subroutine instructions it will come back to mainroutine and execute the instructions after CALL 2500.
  10. 10. STA 3051: This instruction will store the result (performed in subroutine) of Accumulator to address 3051.
  11. 11. HLT: This instruction will terminate the program.


Sub routine:

  1. ANI 0F: This instruction will separate the LSB of the number present in Accumulator and stores the result back in Accumulator.
  2. CPI 0A: This instruction will compare the content of Accumulator with 0A i.e. [A]-0A.
  3. JNC 205A: If the carryflag becomes 0 then it will jump to 205A otherwise move to the next instruction.
  4. ADI 30: It will add 30 to the content of Accumulator and again store the result back in Accumulator.
  5. RET: Now it will move back to the main routine after the next instruction of CALL and start executing instructions of main routine.
  6. It will add 37 to the content of Accumulator and again store the result back in Accumulator.
  7. RET: Now it will move back to the main routine after the next instruction of CALL and start executing instructions of main routine.


Advantages of converting binary number to ASCII code:

  1. Converting a binary number to ASCII code is a common operation used in many applications, such as displaying binary data on a computer screen or printing binary data to a printer.
     
  2. It is a simple and straightforward task that can be easily implemented in any programming language.
     
  3. It is a fast operation that can be completed in O(n) time complexity, where n is the number of bits in the binary number.
     

Disadvantages of converting binary number to ASCII code:

  1. If the binary number is very large, storing the entire number in memory may not be feasible, which could require a more complex solution such as processing the binary number in smaller parts.
     
  2. If the binary number is negative, additional logic is required to handle the sign bit and convert it to a negative ASCII code.
     
  3. If the ASCII code is being displayed on a computer screen or printed to a printer, the font used to display the characters may not be able to display all ASCII codes correctly, which could result in distorted or unreadable characters.

Next article: 8085 program to convert 8 bit BCD number into ASCII Code


Next Article

Similar Reads