I am new in assembly I tried to move variables in this link https://schweigi.github.io/assembler-simulator/ I tried to change the content of char1 and char3
JMP start
char1: db "A"
char2: db "B"
char3: db "C"
start:
MOV A, [char1]
MOV B, [char3]
MOV [char3],A
MOV [char1],B
now I want to do it only with one register ( without B ) , it is possible to define another variable
but i didn't understand how to move the content between 2 variables
Could you please advise ?