Email: Password: Remember Me | Create Account (Free)

Back to Subject List

Old thread has been locked -- no new posts accepted in this thread
???
08/01/05 07:05
Read: times


 
#98545 - Accessing External RAM
This is the code of a program that can be used to write upcoming serial data to external RAM:

MRAM EQU 0000H ;RAM first address
BAUD EQU 0E6H ;1200 bauds at 12Mhz

ORG 0000H
LJMP START


ORG 0023H ;Serial Interrupt
LJMP SERI

ORG 0027H
START: MOV AUXR,#03h
MOV PCON,#00h
MOV IE,#90H
MOV IP,#10H
MOV SP,#07H
MOV DPTR,#MRAM
MOV SCON,#54H
MOV TMOD,#20H
MOV TL1,#BAUD
MOV TH1,#BAUD
SETB TR1

ESPERA: CPL P3.3
SJMP ESPERA


ORG 0050H
SERI: MOV A,SBUF
MOVX @DPTR,A
INC DPTR
CLR RI
RETI

END

This code is not functioning, the ports P0 and P2 become at a high level all the time, if I include the line "mov P1,A" I see that the acumulator have the right serial data. But is not sending it to the external RAM.

I need to set some type of software or hardware to use MOVX instructions?

List of 6 messages in thread
TopicAuthorDate
Accessing External RAM            01/01/70 00:00      
   Hardware!            01/01/70 00:00      
      I seted the hardware            01/01/70 00:00      
         ExtRAM            01/01/70 00:00      
         RTFDS            01/01/70 00:00      
   bible study time?            01/01/70 00:00      

Back to Subject List