uasm 1.0.9+2.57

A library to build the UASM compiler, for usage in build scripts.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15

;--- test max constant values

	.286
	.model tiny

	.code

	and ax,not 0C000h
	mov ax, 0FFFF3FFFh	;ok (everything's ok as long as hi32 is 0 or -1)
;	mov ax, 12345h		;accepted by Masm, rejected by JWasm
;	and ax,not 1C000h	;accepted by Masm, rejected by JWasm
;	and ax, 0FFFE3FFFh	;accepted by Masm, rejected by JWasm

	end