Type in inline assembly -


I was writing in some code, I had the following line:

__shm mov [ebp -24]], 0

... by Biwet PTR [EBP-24] generated by the compiler, 0

Is there any way by which I call it Dvrod PTR [ebp - 24], instead of 0?

Try based on your assembler (you did not tell what you are using), try :

  mov dword ptr [ebp-24], 0  

or

  movl [ebp-24]] , 0  

Comments