Created
June 13, 2018 07:08
-
-
Save NaniteFactory/efe22f34bf8b329d4dd155816c2f50c1 to your computer and use it in GitHub Desktop.
memset() - fills a specified (ecx) amount of memory (at [edi]) with a given value (in eax).
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| lea edi,[ebp-000000CC]; 8D BD 34FFFFFF | |
| mov ecx,00000033; B9 33000000 | |
| mov eax,CCCCCCCC; B8 CCCCCCCC | |
| repe stosd; repeat until equal(zero flag 1) - store string dword of accumulator(eax) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment