Welcome to HBH! If you had an account on hellboundhacker.org you will need to reset your password using the Lost Password system before you will be able to login.

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?