uasm 1.0.9+2.57

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

;--- TEST instruction

	.286
	.model small
	.386

	.data

m08	label byte
m16	label word
m32	label dword

	.code

	test al,80h
	test ax,8000h
	test eax,80000000h
	test bl,80h
	test bx,8000h
	test ebx,80000000h
	test m08,80h
	test m16,8000h
	test m32,80000000h

	end