containing DOS 3.3 as well as ProDOS 8.
 
 For ProDOS 8 system programs the load address is fixed to $2000 so there
-is no need for a header. Therefore the linker configuration
+is no need for a header. Thus the linker configuration
 <htmlurl url="apple2-4.html#ss4.3" name="apple2-system.cfg"> for those programs
-omits the DOS 3.3 header.
+omits the DOS 3.3 header. The right AppleCommander option to put system files
+without a header on a ProDOS 8 disk image is </-p/.
 
 
 <sect>Memory layout<p>
 The ld65 linker comes with a builtin config file for the Apple ][,
 which is used via <tt/-t apple2/ (and displayed via <tt/--dump-config apple2/).
 The apple2 package comes with additional secondary linker config files, which
-are used via <tt/-C <configfile>/.
+are used via <tt/-C <configfile>/.
 
 
 <sect1>builtin config file<p>
 
 ProDOS 8 requires for every open file a page-aligned 1 KB I/O buffer. By default
 these buffers are allocated by the cc65 runtime system on the heap using
-<tt/posix_memalign()/. While in general this is the best solution it means quite
+<tt/posix_memalign()/. While this is generally the best solution it means quite
 some overhead for (especially rather small) cc65 programs which do open files
-but do not make use of the heap otherwise.
+but don't make use of the heap otherwise.
 
 The apple2 package comes with the alternative ProDOS 8 I/O buffer allocation
 module <tt/apple2-iobuf-0800.o/ which uses the memory between $800 and
 
 While using <tt/_heapadd()/ as described in the section above together with the
 default I/O buffer allocation basically yields the same placement of I/O buffers
-the primary benefit of <tt/apple2-iobuf-0800.o/ is a reduction in code size -
-and thus program file size - of more than 1400 bytes.
+in memory the primary benefit of <tt/apple2-iobuf-0800.o/ is a reduction in code
+size - and thus program file size - of more than 1400 bytes.
 
 Using <tt/apple2-iobuf-0800.o/ is as simple as placing it on the linker command 
 line like this: