uasm 1.0.9+2.57

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

	.386
	.model small, pascal
	option proc:private

	.code

externdef c p1: far

;--- proto accepts undefined symbols, procs, protos and externdefs

p1 proto far c :word
p1 proto far c :word
p1 proc far c public a1:word
	ret
p1 endp

;externdef p1: far

	end