Open In App

8086 program to convert 8 bit BCD number into ASCII Code

Last Updated : 08 Feb, 2024
Improve
Improve
Like Article
Like
Save
Share
Report

Problem – Write an assembly language program in 8086 microprocessor to convert 8-bit BCD number to its respective ASCII Code. 

Assumption – 
Starting address of the program: 400 
Input memory location: 2000 
Output memory location: 3000 

Example : 

Input: 
DATA: 98H in memory location 2000

Output:
DATA: 38H in memory location 3000 and
39H in memory location 3001

Algorithm – 

  1. Load contents of memory location 2000 in register AL 
     
  2. Copy contents of register AL in register AH 
     
  3. Perform AND operation on register AL with 0F 
     
  4. Assign 04 to CL Register 
     
  5. Shift the contents of AH by executing SHR instruction using CL 
     
  6. Perform OR operation on register AX with 3030 
     
  7. Store the content of AX in memory location 3000 
     

Program – 

Memory Address Mnemonics Comments
400 MOV AL, [2000] AL<-[2000]
404 MOV AH, AL AH<-AL
406 AND AL, 0F AL <- (AL AND 0F)
408 MOV CL, 04 CL <- 04
40A SHR AH, CL Shift AH content Right by 4 bits(value of CL)
40C OR AX, 3030 AX <- (AX OR 3030)
40F MOV [3000], AX [3000]<-AX
413 HLT Stop Execution

Explanation – 

  1. MOV AL, [2000]: loads contents of memory location 2000 in AL 
     
  2. MOV AH, AL: copy contents of AL in AH 
     
  3. AND AL, 0F: do AND operation on AL with 0F 
     
  4. MOV CL, 04 assign 04 to CL register 
     
  5. SHR AH, CL: shift the content of AH register right by 4 bits i.e. value of CL register 
     
  6. OR AX, 3030: do OR operation on AX with 3030 
     
  7. MOV [3000], AX: stores the content of AX register pair in 3000 memory address 
     
  8. HLT: stops executing the program

Advantages:

  • It can be implemented in low-level programming languages such as assembly language, providing a high level of control over the hardware and the ability to optimize the code for specific applications.
     
  • It can be used in embedded systems and other applications where hardware resources are limited, as the 8086 microprocessor is a simple and low-cost device.
     
  • It can perform BCD-to-ASCII conversions on other types of data, such as arrays or memory locations, providing a versatile tool for manipulating data.
     

Disadvantages:

  • It can be a complex and error-prone process, requiring a sequence of instructions to be executed in a specific order and careful handling of register values.
     
  • It may not be as fast or efficient as dedicated BCD-to-ASCII conversion hardware or software libraries on more advanced microprocessors.
     
  • It may require specialized knowledge and programming skills to implement and optimize, as the sequence of instructions can be complex and the conversion table may need to be customized for specific applications.

Like Article
Suggest improvement
Previous
Next
Share your thoughts in the comments

Similar Reads