	list i, -m
; EMAXS.ASM	Top level
; Editor using the XEP80    SpartaDOS Version - Smaller Text Space
	LIST -L
;
RAMTOP	= $9000	; Top of usable RAM for text
KILBUF	= $9000	; Bottom of kill buffer (2K in size)
KILLIM	= $9800	; Top of kill buffer
;
;Strings and buffer descrs are at $BC40-BFFF

	include D1:DEFS.ASM

	ORG  $600
	include D1:PAGE6C.ASM

	list -l
	include D1:EMACRO.ASM
	list *

	ORG  $4000
START:
	include D1:EMINIT.ASM

	ORG  $9800
	include D1:TABLES.ASM	;chr trans and jump tables
	include D1:FILER.ASM

	list -l
	include D1:ELIB.ASM
	list *

	include D1:BUFFER.ASM
MAIN:
	include D1:EDITOR.ASM
	include D1:EFUNC.ASM
	include D1:DRAWFAST.ASM
	include D1:ECTL1.ASM
	include D1:ECTL2.ASM

	LIST L

EMAXND:	END START

;end
