uasm 1.0.9+2.57

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

;--- assembler crash if coff line number info was generated ( -Zd or -Zi )
;--- and source contained multiple sections with code outside of procs.

	.386
	.model flat,stdcall
	option casemap:none

	.code

start:
	mov eax, 1
	call anothersection
	ret

	.code XXX
	nop
anothersection:
	add eax,eax
	ret

	.code
	nop
	nop

end start