Question 11.26: (a) Write a program to read 200 bytes of data from P1 and sa...

(a) Write a program to read 200 bytes of data from P1 and save the data in external RAM starting at RAM location 5000H.
(b) What is the address space allocated to data RAM in Figure 14-15?

The blue check mark means that this solution has been answered and checked by an expert. This guarantees that the final answer is accurate.
Learn more on how we answer questions.
(a)
RAMDATA   EQU   5000H
COUNT        EQU    200

MOV    DPTR,#RAMDATA
MOV    R3,#COUNT

AGAIN:         MOV    A,P1

MOVX  @DPTR,A
ACALL  DELAY
INC       DPTR
DJNZ   R3,AGAIN

HERE:          SJMP  HERE

(b) The data address space is 8000H to BFFFH.

Related Answered Questions

Question: 11.22

Verified Answer:

(a) The address range for Y4 is calculated as foll...
Question: 11.25

Verified Answer:

Figure 14-14 shows the design. Notice the role of ...
Question: 11.20

Verified Answer:

The 27128 has a capacity of 128K bits. It has 16K ...