diff --git a/doc/grc65.sgml b/doc/grc65.sgml index 84708a2c8..e57a507e2 100644 --- a/doc/grc65.sgml +++ b/doc/grc65.sgml @@ -250,7 +250,7 @@ ca65 -t geos-cbm test.s That way, you have a &dquot;Fourth and last step -- linking it together +Fourth and last step -- linking the application

ld65 -t geos-cbm -o test.cvt testres.o test.o geos-cbm.lib @@ -279,7 +279,7 @@ In "cc65/samples/geos" there's a VLIR overlay demo application consisti of the files "Building the GEOS application using cl65 +Building the GEOS overlay application using cl65

This is a simple one step process: cl65 -t geos-cbm -O -o overlay-demo.cvt -m overlay-demo.map overlay-demores.grc overlay-demo.c @@ -294,27 +294,27 @@ the distribution of code into the overlays and to optimize the memory area reser for the overlays. -Building the GEOS application without cl65 -First step -- compiling the resources +Building the GEOS overlay application without cl65 +First step -- compiling the overlay resources

grc65 -t geos-cbm overlay-demores.grc -Second step -- assembling the application header +Second step -- assembling the overlay application header

ca65 -t geos-cbm overlay-demores.s -Third step -- compiling the code +Third step -- compiling the overlay code

cc65 -t geos-cbm -O overlay-demo.c ca65 -t geos-cbm overlay-demo.s -Fourth and last step -- linking it together +Fourth and last step -- linking the overlay application

ld65 -t geos-cbm -o overlay-demo.cvt -m overlay-demo.map overlay-demores.o overlay-demo.o geos-cbm.lib