On 14 Sep 2010, at 08:35, leledumbo wrote: > segment .text > global tes > tes: > push ebp > mov ebp,esp > push 65 Check that this puts a 32 bit value on the stack rather than an 8 bit or 16 bit one. You may need "push dword 65" or something like that. Jonas