View previous topic :: View next topic |
Author |
Message |
junjun776 Newbie cheater
Reputation: 0
Joined: 13 Dec 2016 Posts: 13
|
Posted: Wed Dec 14, 2016 11:57 am Post subject: <help> this instruction cant compiled |
|
|
mov [rax+14]
mov [rax-30]
i can't Script Completion...
|
|
Back to top |
|
 |
Matze500 Expert Cheater
Reputation: 8
Joined: 25 Jan 2012 Posts: 241 Location: Germany
|
Posted: Wed Dec 14, 2016 12:03 pm Post subject: |
|
|
where do you wan't to move the things.
A correct mov instruction look like this:
mov rax,[rbx+56] or
mov rax,rbx or
mov [rbx+8],rax
Greets Matze
_________________
|
|
Back to top |
|
 |
junjun776 Newbie cheater
Reputation: 0
Joined: 13 Dec 2016 Posts: 13
|
Posted: Wed Dec 14, 2016 12:12 pm Post subject: |
|
|
Matze500 wrote: | where do you wan't to move the things.
A correct mov instruction look like this:
mov rax,[rbx+56] or
mov rax,rbx or
mov [rbx+8],rax
Greets Matze |
Thanks for the quick answer.
Should I use one of these?
Is it all the same?
mov [rax+14]
mov [rax-30] = mov rax,[rbx+56] ????
|
|
Back to top |
|
 |
++METHOS I post too much
Reputation: 92
Joined: 29 Oct 2010 Posts: 4197
|
Posted: Wed Dec 14, 2016 12:37 pm Post subject: |
|
|
No, it's not all the same. Better to explain what you are trying to do, specifically.
I would recommend learning more about assembly.
|
|
Back to top |
|
 |
Kavvman Master Cheater
Reputation: 2
Joined: 17 Apr 2004 Posts: 316
|
Posted: Wed Dec 14, 2016 6:46 pm Post subject: |
|
|
these aren't even proper instructions
mov [rax+14]
mov [rax-30]
You need to learn assembly. This one is good for starters
http://dl.atom0s.com/Coding/ASM/asmd1.txt
_________________
... |
|
Back to top |
|
 |
|