uasm 1.0.9+2.57

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

;--- temp macro parameter expansion problem in v2.08

	.386
	.model flat, stdcall
	option casemap:none

POINT struct
x	dd ?
y	dd ?
POINT ends

defv macro var, init
var	POINT init
	endm

	.data

	defv xxx,{<1,2>}

end