uasm 1.0.9+2.57

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

;--- line concatenation inside macros.
;--- internal handling has changed with v2.05

	.386
	.model flat

m1 macro
local x,y,\
z
x	db 1
y	db 2
z   db 3
	endm

	.code

	m1
	m1

	end