uasm 1.0.9+2.57

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

;--- macro with VARARG parameter attribute and % operator

	.386
	.model flat, stdcall
	option casemap :none

E2	equ 1

Check2 macro args:VARARG
	for arg, <args>
	mov eax, arg
	endm
endm

	.code

	Check2 1, %2, %3, 4

	end