uasm 1.0.9+2.57

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

;--- predefined text macros 
;--- @FileName, @Line, @CodeSize, @DataSize, @Interface

	.286
	.MODEL small, stdcall
	option casemap:none

	.DATA

	db @CatStr(!",%@FileName,!")
	db @CatStr(!",%@Line,!")
	db @CatStr(!",%@CodeSize,!")
	db @CatStr(!",%@DataSize,!")
	db @CatStr(!",%@Interface,!")

	END