uasm 1.0.9+2.57

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

;--- handle '\' as last char AFTER expansion
;--- works since v2.11

	.386
	.model flat

	.code

XXX	textequ <\>

	if XXX
	1
	db 0
	endif

;--- use a hll directive, to ensure it also
;--- works if the line will cause generated code.

	.if eax == XXX
	1
	db 0
	.endif

end