; C like LIBrary - based upon PD SIG/M 117 ; Slightly modified for CP/M PLUS by ; Werner Cirsovius ; Hohe Weide 44 ; D-2000 Hamburg 2000 ; Phone 0049-040-4223247 ; Mod Date June 1989 .xlist ; General system equates for assembler programs ; 820819:1335 ; .z80 ; ; CP/M calls ; boot equ 0000h ; warmboot vector bdos equ 0005h ; system call point wboot equ 0000h ; system reset ; ; ASCII character set and video control ; endstr equ 0 ; end-of-string bel equ 7 ; bell bks equ 8 ; backspace tab equ 9 ; tab-by-8 lf equ 10 ; linefeed newlin equ lf vt equ 11 ; vertical tab ff equ 12 ; formfeed cr equ 13 ; return ceol equ 14 ; clear-line ceos equ 15 ; clear-scr can equ 24 ; cancel line eof equ 26 ; end-of-file escape equ 27 blank equ 32 ; space squote equ 39 ; ' plus equ 43 ; + minus equ 45 ; - period equ 46 ; . del equ 127 ; ; other printing chars go in ''s ; ; System limitations ; maxdrv equ 'M'-'A'+1 ; Number of drives maxlin equ 120 ; Biggest line allowed sectrs equ 8 ; Sectors to buffer per file reclng equ 128 ; Bytes per record ; ; Message macro ; msg macro text .xlist irp n, db n endm db endstr .list endm .list