uasm 1.0.9+2.57

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

	.386
	.model flat

EMM59 struct
e59_pgsize  dw ?    ;raw page size in paragraphs
e59_altsets dw ?    ;number of alternate register sets
e59_sizcont dw ?    ;size of mapping context save area in bytes
e59_dmasets dw ?    ;dma register sets
e59_dmaflgs dw ?    ;dma flags
EMM59 ends

	.data

x1   EMM59 <1,2,3,4,5>
x2   EMM59 2 dup (<1,2,3,4,5>)

	.code

    mov ecx, size x1
    mov ecx, length x1
    mov ecx, size x2
    mov ecx, length x2

	END