Changes between MAC80 6A and 7: .SYM is created whenever a list file is requested. This can be used by SID and ZSID. MACLIB will read in .LIB (in your default path) as a librbry of macros and symbol definitions. PAGE will force a page eject. PAGE n will set the default page size to n. NUL FOO will return TRUE if FOO is a null argument to a macro. NUL actually checks for an undefined symbol generated for the macro, so passing an undefined symbol as an argument to a macro will be tested as a null argument. REPT ... ENDM repeats the code inside the macro times. Local symbols may be used in REPT. EXITM may be used to abort a macro or REPT. One layer of fuzzy thinking removed from upper/lower case handling. One known bug: OPT SMAC and nested macros generate junk in the listing. The generated code is OK. Changes between MAC80 6 and 6A: Relational operators in expressions (=,<>,<,<=,>,>=,eq,ne,lt,le,gt,ge), returns FF if true 0 if false. @ and ? are allowed in symbols. $ are considered non-significant in symbols. local symbols are now ??n instead of L$$n. Changes between MAC80 5B and 6: Symbols may now be 12 characters long Symbols (including numbers) may include dollar signs The listing file output reflects the actual case of the input file The value generated by dollar signs (assembler PC) in EQU statements are now correct Binary numbers are now legal Macros may now be nested Local symbols in macros