uasm 1.0.9+2.57

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

option flat:1
.code

	use64

	mov eax,FLAT:[0]	; This legacy mode should fall back to old codegen.

	bnd mov eax,ecx         ; cant use bnd	
	lock mov rax,rax		; cant use lock
	rep mov eax,ecx			; cant use rep
	repe mov eax,ecx		; cant use rep
	repz mov eax,ecx		; cant use rep
	repne mov eax,ecx		; cant use rep
	repnz mov eax,ecx		; cant use rep
	
	mov r8b,ah				; Cannot mix R8U with R8E
	mov sil,ch				; ""
	
	mov rax,fs:rcx			; Cant use segment override.
	mov ecx,es:[rax]		; Can't use segment override in 64bit except for fs/gs
	mov eax,[rax*16]		; Scale max is 8.
	mov eax,[rax+rcx+rdx]	; Can't use 3 addressing registers.
	mov fs:r8,rax 			; No segment prefix allowed.
	
	mov r8b,[rsi+rsp*4+32]	; invalid encoding rsi+rsp 
	mov r8b,[rsp+rsp*4+32]	; invalid encoding rsp+rsp
	mov r8b,[rax+rsp*4]		; invalid encoding 
	
	mov ah,[r10+32000] 		; cannot use ah with REX
	mov r8b,DWORD PTR [rax+rax*4+0xc80]  ; error sizing
	
	mov al,[si]				; 16bit addressing not allowed in long mode

	movabs bl,[0x00000000]  ; moffset cant only use rax..
	
	mov al,300				; immediate data too large, opnds must be the same size.

.data

ddVar dd 0