Assembly Command mov [r8], [rax]
Also In a computer system, what does having interrupts get you? If you do not have interruptions, what would be your other option?
Assembly Command mov [r8], [rax]
Also In a computer system, what does having interrupts get you? If you do not have interruptions, what would be your other option?
mov cannot be use to move data memory to memory : see this for all the possible combination with the mov opcode.
you can do that instead:
mov rax, [rax]
mov [r8], rax
also your code contained a second flaw:
mov [r8], [rax] do not indicate the size of operation.