From f164a96cc2939b63f58fbb95b6adb54fb1e366cb Mon Sep 17 00:00:00 2001 From: uz Date: Fri, 6 Jan 2012 21:31:22 +0000 Subject: [PATCH] Fixed several build warnings. git-svn-id: svn://svn.cc65.org/cc65/trunk@5394 b7a2c559-68d2-44c3-8de9-860c34a00d81 --- doc/grc65.sgml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/doc/grc65.sgml b/doc/grc65.sgml index c98cfc2a1..84708a2c8 100644 --- a/doc/grc65.sgml +++ b/doc/grc65.sgml @@ -224,6 +224,7 @@ inclusion by a Building the GEOS application without cl65 First step -- compiling the resources +

grc65 -t geos-cbm testres.grc @@ -234,12 +235,14 @@ Note that &dquot;Second step -- assembling the application header +

ca65 -t geos-cbm testres.s And, voilá -- &dquot;Third step -- compiling the code +

cc65 -t geos-cbm -O test.c ca65 -t geos-cbm test.s @@ -248,6 +251,7 @@ That way, you have a &dquot;Fourth and last step -- linking it together +

ld65 -t geos-cbm -o test.cvt testres.o test.o geos-cbm.lib @@ -292,22 +296,26 @@ for the overlays. Building the GEOS application without cl65 First step -- compiling the resources +

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

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

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

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