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

;--- expansion: be careful with expansion of items at position 0
;--- ( might turn out to be a text macro definition line ( EQU, CATSTR, TEXTEQU, SUBSTR )

TM_1 textequ <X>
;--- the next line must REDEFINE TM_1, but not define X!
    @CatStr(TM, _1 ) textequ <ABC>

_DATA segment
%	db "&X"
_DATA ends

	end