uasm 1.0.9+2.57

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

	.386
	.model flat

	.code

	dw opattr [ebp+ecx]		;result: 22h ( jwasm < v2.10: 62h [ 40h=stack related ] )

p1 proc
local x1[2]:byte

	dw opattr [x1+ecx]		;result: 62h
	dw opattr (x1[ecx])		;result: 62h

	dw opattr [ecx+x1]		;result: 62h
	dw opattr ([ecx]x1)		;results: ml=0; jwasm v2.10=0; jwasm < v2.10: 'missing operator in expression'

p1 endp

END