uasm 1.0.9+2.57

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

;--- test PROC epilogue creation with RET
;--- inside the macro, a RET has still to be translated to
;--- RETF if the proc is FAR.

myepilogue macro a,b,c,d,e,f
ret
endm

option epilogue:myepilogue

_TEXT segment word public 'CODE'
tproc proc far
xor ax, ax
ret
tproc endp
_TEXT ends

	END