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

;--- test + operator with 2 forward references

code segment 'code'
	mov dx,offset buf+bufsize	;sum of 2 forward references
	mov ax,4c00h
	int 21h
buf equ $
bufsize equ 200
code ends
    end