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

Back to Subject List

Old thread has been locked -- no new posts accepted in this thread
???
05/17/00 10:56
Read: times


 
#2722 - RE: 8051 Question
george is correct 1 more bit
if u are using an assembler like dscope.
then you can initialise 0x11 to some variable like this
LOCATION: EQU 011H
in your program you can use the word LOCATION to access the location 0x11 it is always easy to remember the name rather than the location

sample assembler program using DSCOPE
-------------------------------------
LOCATION: EQU 0011H
ORG 0000H
JMP START

START:
MOV LOCATION,#0FH
RET
THATS IT BYE FROM Srikanth


List of 4 messages in thread
TopicAuthorDate
8051 Question            01/01/70 00:00      
RE: 8051 Question            01/01/70 00:00      
RE: 8051 Question            01/01/70 00:00      
RE: 8051 Question            01/01/70 00:00      

Back to Subject List