ansarmytheen
Full Member level 3
- Joined
- Jan 9, 2010
- Messages
- 155
- Helped
- 55
- Reputation
- 110
- Reaction score
- 53
- Trophy points
- 1,308
- Location
- kerala
- Activity points
- 2,100
Hai,
I want to edit my memory window in keil tool,Iam using AT89c51. I can give data by using db,but cannot add anew value on memory.
ORG 00H
mov r2,#08h
mov r0,#40h
mov a,01
start: mov @r0,a
inc a
inc r0
djnz r2, start
end
This program doesn't work.
I want to edit my memory window in keil tool,Iam using AT89c51. I can give data by using db,but cannot add anew value on memory.
ORG 00H
mov r2,#08h
mov r0,#40h
mov a,01
start: mov @r0,a
inc a
inc r0
djnz r2, start
end
This program doesn't work.