uasm 1.0.9+2.57

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

;--- test 3DNow

	.586
	.model flat
	.k3d

	.data

v1	dq 0

	.code

	femms
	pfmax mm0, mm1
	pfmax mm0, [v1]
	pfmax mm3, [v1]
	pfmax mm3, [esp+edx*2+1]
	prefetch [v1]
	prefetchw [v1]

	end