Anleitung	db 13,10
                db "Easy-Patcher V1.1            Copyright in July 1992 by Adrian Studer (CHICKEN)!",13,10
                db "                             Betatesting by Necromancer and Rocksteady",13,10,13,10
                db "The new solution to include pictures and other datas directly in your codes.",13,10,13,10
		db "Advantages: * No converting to code-lines or objects!",13,10
		db "            * You know where the datas are!",13,10
                db "            * Easy to handle like normal data in your sources!",13,10
                db "            * Also helpfull for patching command.com etc.!",13,10,13,10
		db "Usage: define in your codes an area with labelname and fillbytes",13,10
                db '       eg: bitplane   db "label", 4000 dup (0)',13,10
		db '           remember, that the string "label" is a part of the reserved memory',13,10
		db "       compile your code as usual",13,10
                db "       start the Patcher like this:    EPATCH myproggy datafile label",13,10
                db "       upper and lower case are NOT ignored!",13,10,"$"

FileFehler      db "prgfile not found!",13,10,"$"
FileFehler2     db "datafile not found!",13,10,"$"
LabelFehler     db "label not found!",13,10,"$"
ReadError       db "read error!",13,10,"$"
WriteError      db "write error!",13,10,"$"
HappyDay        db "patching succeed!                      ",13,10,"$"

