PUBLIC _myCode PUBLIC myData_ .386 .model flat,c .DATA myData_: BYTE 32 .CODE _myCode: push ebp mov ebp, esp mov eax, [ebp + 8] pop ebp ret end