From 8cf0794c3ed1c2b4b2835e414fdb0d49d75b80cb Mon Sep 17 00:00:00 2001
From: "ol.sc"
Date: Thu, 5 Jan 2012 01:10:00 +0000
Subject: [PATCH] Updated second part of the grc65 doc.
git-svn-id: svn://svn.cc65.org/cc65/trunk@5386 b7a2c559-68d2-44c3-8de9-860c34a00d81
---
doc/grc65.sgml | 196 ++++++++++++++++++++++++-------------------------
1 file changed, 97 insertions(+), 99 deletions(-)
diff --git a/doc/grc65.sgml b/doc/grc65.sgml
index 0c27ac970..9d3d30f02 100644
--- a/doc/grc65.sgml
+++ b/doc/grc65.sgml
@@ -26,7 +26,7 @@ files of an app.), dialog definitions, etc. Without an application's header,
GEOS is unable to load and start it.
Currently, Resource file format
A resource file has the name extension for a
-better view of the problem.
+better view of the situation.
Menu definition
@@ -79,7 +79,7 @@ MENU menuName leftx,topy {
...
"item name x" pointer
}
-The definition starts with the keyword for descriptions of
them). You can use C logical operators in expressions, but you have to do it
-without spaces. So, a dynamically created submenu will be something like:
+without spaces. So a dynamically created submenu will be something like:
"dynamic" SUB_MENU|DYN_SUB_MENU create_dynamic
The last part of the item definition is a pointer which can be any name that is
@@ -99,7 +99,7 @@ present in the C source code that includes the generated header. It can point
to a function or to another menu definition.
If you are doing sub(sub)menu definitions, remember to place the lowest level
-definition first, and the top-level menu as the last one. That way, the C
+definition first, and the top-level menu as the last one. That way the C
compiler won't complain about unknown names.
@@ -176,9 +176,9 @@ general.
GEOS support in cc65 is based on the .
+deconverted in GEOS, before it can be run. You can read a step-by-step
+description of that in the .
Each project consists of four parts, two are provided by cc65. Those parts
are:
@@ -187,132 +187,130 @@ are:application objects
system library
-Building a GEOS application without cl65
-
Assume that there are three input files: &dquot;
#include
-#include "resource.h"
+#include "testres.h"
There are no other includes.
+
+Building the GEOS application using cl65
+
This is a simple one step process:
+
+cl65 -t geos-cbm -O -o test.cvt testres.grc test.c
+
+Always place the Building the GEOS application without cl65
First step -- compiling the resources
-
-$ grc65 resource.grc
-
-will produce two output files: &dquot;
+grc65 -t geos-cbm testres.grc
+
+will produce two output files: &dquot;Second step -- assembling the application header
-
-$ cc65 -t geos-cbm -O test.c
-$ ca65 -t geos-cbm test.s
-
+
+cc65 -t geos-cbm -O test.c
+ca65 -t geos-cbm test.s
+
That way, you have a &dquot;Fourth and last step -- linking it together
-
-$ ld65 -o test.cvt -t geos-cbm resource.o geos.o test.o geos.lib
-
-&dquot;
+ld65 -t geos-cbm -o test.cvt testres.o test.o geos.lib
+
+The last file is the GEOS system library.
The resulting file &dquot;Building a GEOS VLIR application