uasm 1.0.9+2.57

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

;--- test text macro expansion
;--- text macro contains 2 macro function calls

	.286
	.model small
	.386

argy CATSTR <@SubStr(<mov nEvents:eax>,1,11) , @SubStr(<mov nEvents:eax>,13)>

	.data

nEvents dd 0

	.code

	argy

	ret

	End