uasm 1.0.9+2.57

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

	.386
	.model flat, stdcall

m2 macro text
	db "&text",0
	endm

	.data

	db "abc \; def",0
	m2 <abc \!; def>
	m2 <abc ; def>
	m2 <'abc ; def'>
	m2 <""abc ; def"">
	m2 <'abc > def'>
	m2 <'abc < def'>
	m2 <abc !> def>
	m2 <abc !< def>
;	m2 <abc < def> 	;should fail

	end