format MS COFF

public func1 as '_func1'


public string1 as '_string1'

public struct1 as '_struct1'


section '.text' code readable executable



func1:

	push ebp
	mov ebp, esp
	label arg1 dword at ebp+8
	label arg2 dword at ebp+12
	
	
	add [arg1], 2

	push ebx esi edi

	mov eax, [arg1]
	
	pop edi esi ebx

	mov esp, ebp
	pop ebp

	retn 0



section '.data' data readable writeable

	string1 db 'String text here.',0
	struc Struct1 member1{
		.member1 dd member1
	}

	struct1 Struct1 77