uasm 1.0.9+2.57

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

;--- test absolute externals

	.model small
	.stack

extern value1:abs

	includelib <extern1.lib>

	.code

start:
	or al,value1
	mov al,value1
	mov ah,4ch
	int 21h

	end start