Open In App
Related Articles

8086 program to convert binary to Grey code

Improve Article
Improve
Save Article
Save
Like Article
Like

Prerequisite – Binary to/from Gray Code
Problem – Write a program to convert Binary number to Grey code 8-bit number where starting address is 2000 and the number is stored at 2500 memory address and store result into 2600 memory address.

Example –

Algorithm –

  1. Move value at [2500] into AL
  2. Move AL into BL
  3. Logical shift right AL one time
  4. XOR BL with AL (Logically) and store into BL
  5. Move content of BL into 2600
  6. Stop

Program –

Memory Mnemonics Operands Comment
2000 MOV AL, [2500] [AL] <- [2500]
2004 MOV BL, AL [BL] <- [AL]
2006 SHR AL, 01 Shift Right one time
2008 XOR BL, AL [BL] <- [BL] @ AL
200A MOV [2600], BL [2600] <- [BL]
200E HLT Stop

Explanation – Registers AL, BL are used for general purpose

  1. MOV is used to transfer the data
  2. SHR is used to shift right (logically) up to counter is not zero
  3. XOR is used to exclusive-or of two values (logically)
  4. HLT is used to halt the program

See for 8085 program to convert binary numbers to gray

Whether you're preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape, GeeksforGeeks Courses are your key to success. We provide top-quality content at affordable prices, all geared towards accelerating your growth in a time-bound manner. Join the millions we've already empowered, and we're here to do the same for you. Don't miss out - check it out now!

Last Updated : 22 May, 2018
Like Article
Save Article
Previous
Next
Similar Reads