Welcome to HBH! If you have tried to register and didn't get a verification email, please using the following link to resend the verification email.

ASM Questions


psyl0cke's Avatar
Member
0 0

I know that I put string to eax like mov eax, 'abcd'. But how do I put a string to eax like 'abcd', 0? How do I push eax to printf?

I know that I modify a string first two character with mov [string], word 'ab'. But how do I modify a string first three character to 'abc'?

If string db "abc", 0, how do I do mov string, "abcd", 0?