You are currently viewing [PRACTICAL] Implement a program to mask the lower four bits of content of the memory location
Microprocessor 8085 programming

[PRACTICAL] Implement a program to mask the lower four bits of content of the memory location

5
(1)

[PRACTICAL] IMPLEMENT A PROGRAM TO MASK THE LOWER FOUR BITS OF CONTENT OF THE MEMORY LOCATION

Are you looking for a step-by-step guide to Implement a program to mask the lower four bits of the content of the memory location? here are the steps to implement a program to mask the lower four bits of the content of the memory location.

Program:

//MASK OFF LEAST SIGNIFICANT 4 BITS OF AN 8-BIT NUMBER
//The number to be masked is stored in C050 
//Answer is stored in C051

LDA C050
ANI F0
STA C051
HLT

Input:

Content of Memory Location C050: 96h

Output:

Content of Memory Location C051: 90h

How useful was this post?

Click on a star to rate it!

Average rating 5 / 5. Vote count: 1

No votes so far! Be the first to rate this post.

As you found this post useful...

Share this post on social media!

We are sorry that this post was not useful for you!

Let us improve this post!

Tell us how we can improve this post?