uasm 1.0.9+2.57

A library to build the UASM compiler, for usage in build scripts.
Documentation

	.386
	.model flat

MemBlock struct
m_ptr DWORD ?
m_size DWORD ?
MemBlock ends

MemBlockPTR TYPEDEF PTR MemBlock

	.code

	ASSUME edx:MemBlockPTR, ecx:ptr MemBlock

	mov eax,[edx].m_ptr
	mov ebx,[ecx].m_size
	mov eax,[ecx].m_size[ebx]	;fails with v2.05
	ret

	end