uasm 1.0.9+2.57

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

;--- 64-bit forward reference
;--- didn't work before v2.05 because the assembler
;--- assumed a 8-byte constant, which isn't an acceptable
;--- operand for CMP.

	.x64
	.model flat

	.code

	cmp rax, [m64]
;	cmp rcx, E1

m64	dq 0

;E1	equ 0

	end