uasm 1.0.9+2.57

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

;--- test: same test as offset1, but without option m510

;	option m510

cgroup  group   _work,_data,_base,_code

_work   segment
wstop   db      "WSEG", "0123456789", 0, 0
_work   ends

_data   segment
dstop   db      "DSEG", "0123456789", 0, 0
_data   ends

_base   segment
bstop   db      "BSEG", "0123456789", 0, 0
_base   ends

_code segment

	mov cx,offset cgroup:wstop
	mov cx,offset cgroup:dstop
	mov cx,offset cgroup:bstop
	mov cx,offset _work:wstop
	mov cx,offset _data:dstop
	mov cx,offset _base:bstop
	mov cx,offset wstop
	mov cx,offset dstop
	mov cx,offset bstop

	dw offset cgroup:wstop, offset cgroup:dstop, offset cgroup:bstop
	dw offset  _work:wstop, offset  _data:dstop, offset  _base:bstop
	dw offset        wstop, offset        dstop, offset        bstop
	dw               wstop,               dstop,               bstop

_code ends

	End