Overv / MineAssemble

A tiny bootable Minecraft clone written partly in x86 assembly
MIT License
1.04k stars 68 forks source link

Initialize ESP to the top of the stack #1

Closed danielverkamp closed 11 years ago

danielverkamp commented 11 years ago

The stack grows down, so pointing ESP at the low address end of the stack will overwrite other data rather than using the reserved stack area.

Overv commented 11 years ago

No idea how I missed that, thanks!