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
16

;--- regression in v2.09-2.10
;--- the "je" will be extended although final distance is just 127 bytes.
;--- it's caused by the forward reference (l2) in the "add" instruction.

	.model small
	.code
l1:
	and al,al
	je l3
	add dx,l2 - l1
l2:
	org $+124
l3:

end