uasm 1.0.9+2.57

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

;--- GOTO directive peculiarities
;--- a GOTO will reset the if-nesting-level 
;--- hence if a goto-label is inside an if-block,
;--- an error will occur at the next ENDIF.
;--- the only way to circumvent this is to use EXITM
;--- works since v2.10

	.386
	.model flat, stdcall

AU MACRO a1
	if 1
		goto ms1
		:ms1
;		echo ms1
		goto ms2
		if 1
			:ms2
;			echo ms2
			exitm
		endif
	endif
ENDM

	.data

if 1
	AU(1)
	db 0
endif

end