uasm 1.0.9+2.57

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

;--- struct member forward reference

	.286
	.model small

	.code

	mov  [bx].S1.f1,2	;in v2.06, error 'Size not specified, assuming BYTE'
	mul  [bx].S1.f1		;in v2.06, error 'Instruction operand must have size'
	push [bx].S1.f2		;ok
	call [bx].S1.f2		;ok

S1 struct
f1 db ?
f2 dw ?
S1 ends

	end