Re: Hacking Tips
Dunno if this is obvious or not, but segment register SS works best with stack registers, and DS works best with regular registers.
For pointers:
MOV DWORD PTR SS:[EAX+20],30AB40
is one byte longer than
MOV DWORD PTR DS:[EAX+20],30AB40
while
MOV DWORD PTR SS:[EBP+20],30AB40...