Computer Science, asked by pawnirastogi8, 26 days ago

Write a program to move the contents of memory location 2000H to accumulator. Increment these contents and place then in location 2001H.

Answers

Answered by Anonymous
1

Answer:

Program 1:

MVI A, 52H : "Store 32H in the accumulator"

STA 4000H : "Copy accumulator contents at address 4000H"

HLT : "Terminate program execution"

Similar questions