]> git.sur5r.net Git - cc65/commitdiff
Unified GEOS sample resource file names.
authorol.sc <ol.sc@b7a2c559-68d2-44c3-8de9-860c34a00d81>
Tue, 27 Dec 2011 16:29:30 +0000 (16:29 +0000)
committerol.sc <ol.sc@b7a2c559-68d2-44c3-8de9-860c34a00d81>
Tue, 27 Dec 2011 16:29:30 +0000 (16:29 +0000)
git-svn-id: svn://svn.cc65.org/cc65/trunk@5326 b7a2c559-68d2-44c3-8de9-860c34a00d81

13 files changed:
doc/intro.sgml
samples/geos/appfile.grc [deleted file]
samples/geos/apphello1.grc [deleted file]
samples/geos/apphello2.grc [deleted file]
samples/geos/apprmvprot.grc [deleted file]
samples/geos/appvector-demo.grc [deleted file]
samples/geos/appyesno.grc [deleted file]
samples/geos/fileselres.grc [new file with mode: 0644]
samples/geos/hello1res.grc [new file with mode: 0644]
samples/geos/hello2res.grc [new file with mode: 0644]
samples/geos/rmvprotres.grc [new file with mode: 0644]
samples/geos/vector-demores.grc [new file with mode: 0644]
samples/geos/yesnores.grc [new file with mode: 0644]

index 8e5cc358541dab436f46dac25108563c9a2382d5..fadc94e2ddd9a68a55c7f76768d8b9a513f5f474 100644 (file)
@@ -458,11 +458,11 @@ controlled by many different types of input devices:
 
 The tutorial files are different for GEOS.  You will find them "next door," in
 "<tt>cc65/samples/geos</tt>"; they are called "<tt/hello1.c/" and
-"<tt/apphello1.grc/".
+"<tt/hello1res.grc/".
 
 Compile the tutorial with
 <tscreen><verb>
-cl65 -O -t cbm-geos hello1.c apphello1.grc
+cl65 -O -t cbm-geos hello1.c hello1res.grc
 </verb></tscreen>
 Copy the resulting file "<tt/hello1/" onto a (GEOS-format) disk.
 
diff --git a/samples/geos/appfile.grc b/samples/geos/appfile.grc
deleted file mode 100644 (file)
index bc1e113..0000000
+++ /dev/null
@@ -1,8 +0,0 @@
-
-; this is resource file for filesel.c, a GEOS application example
-
-HEADER APPLICATION "filesel" "FileSel" "V1.0" {
-dostype USR
-author "Maciej Witkowiak"
-info "This is C prog compiled with cc65 and GEOSLib."
-}
diff --git a/samples/geos/apphello1.grc b/samples/geos/apphello1.grc
deleted file mode 100644 (file)
index 7c2137d..0000000
+++ /dev/null
@@ -1,8 +0,0 @@
-
-; this is resource file for hello1.c, a GEOS application example
-
-HEADER APPLICATION "hello1" "Hello 1" "V1.0" {
-dostype USR
-author "Maciej Witkowiak"
-info "This is C prog compiled with cc65 and GEOSLib."
-}
diff --git a/samples/geos/apphello2.grc b/samples/geos/apphello2.grc
deleted file mode 100644 (file)
index fb1e3bb..0000000
+++ /dev/null
@@ -1,8 +0,0 @@
-
-; this is resource file for hello2.c, a GEOS application example
-
-HEADER APPLICATION "hello2" "Hello 2" "V1.0" {
-dostype USR
-author "Maciej Witkowiak"
-info "This is C prog compiled with cc65 and GEOSLib."
-}
diff --git a/samples/geos/apprmvprot.grc b/samples/geos/apprmvprot.grc
deleted file mode 100644 (file)
index c63abbc..0000000
+++ /dev/null
@@ -1,9 +0,0 @@
-
-; this is resource file for rmvprot.c, a GEOS application example
-
-HEADER APPLICATION "rmvprot" "RmvProt" "V1.0" {
-dostype USR
-author "Maciej Witkowiak"
-;info "This is C prog compiled with cc65 and GEOSLib."
-info "This will remove write protection from your bootdisk."
-}
diff --git a/samples/geos/appvector-demo.grc b/samples/geos/appvector-demo.grc
deleted file mode 100644 (file)
index 57547fb..0000000
+++ /dev/null
@@ -1,8 +0,0 @@
-
-; this is resource file for yesno.c, a GEOS application example
-
-HEADER APPLICATION "vectordemo" "VectorDemo" "V1.0" {
-dostype USR
-author "Maciej Witkowiak"
-info "This is C prog compiled with cc65 and GEOSLib."
-}
diff --git a/samples/geos/appyesno.grc b/samples/geos/appyesno.grc
deleted file mode 100644 (file)
index 23171a6..0000000
+++ /dev/null
@@ -1,8 +0,0 @@
-
-; this is resource file for yesno.c, a GEOS application example
-
-HEADER APPLICATION "yesno" "YesNo" "V1.0" {
-dostype USR
-author "Maciej Witkowiak"
-info "This is C prog compiled with cc65 and GEOSLib."
-}
diff --git a/samples/geos/fileselres.grc b/samples/geos/fileselres.grc
new file mode 100644 (file)
index 0000000..8301d47
--- /dev/null
@@ -0,0 +1,8 @@
+
+; this is the resource file for filesel.c, a GEOS application example
+
+HEADER APPLICATION "filesel" "FileSel" "V1.0" {
+dostype USR
+author "Maciej Witkowiak"
+info "This is a C prog compiled with cc65 and GEOSLib."
+}
diff --git a/samples/geos/hello1res.grc b/samples/geos/hello1res.grc
new file mode 100644 (file)
index 0000000..3f9665a
--- /dev/null
@@ -0,0 +1,8 @@
+
+; this is the resource file for hello1.c, a GEOS application example
+
+HEADER APPLICATION "hello1" "Hello 1" "V1.0" {
+dostype USR
+author "Maciej Witkowiak"
+info "This is a C prog compiled with cc65 and GEOSLib."
+}
diff --git a/samples/geos/hello2res.grc b/samples/geos/hello2res.grc
new file mode 100644 (file)
index 0000000..d5cac9a
--- /dev/null
@@ -0,0 +1,8 @@
+
+; this is the resource file for hello2.c, a GEOS application example
+
+HEADER APPLICATION "hello2" "Hello 2" "V1.0" {
+dostype USR
+author "Maciej Witkowiak"
+info "This is a C prog compiled with cc65 and GEOSLib."
+}
diff --git a/samples/geos/rmvprotres.grc b/samples/geos/rmvprotres.grc
new file mode 100644 (file)
index 0000000..72e9e8f
--- /dev/null
@@ -0,0 +1,8 @@
+
+; this is the resource file for rmvprot.c, a GEOS application example
+
+HEADER APPLICATION "rmvprot" "RmvProt" "V1.0" {
+dostype USR
+author "Maciej Witkowiak"
+info "This will remove the write protection from your bootdisk."
+}
diff --git a/samples/geos/vector-demores.grc b/samples/geos/vector-demores.grc
new file mode 100644 (file)
index 0000000..a76b51d
--- /dev/null
@@ -0,0 +1,8 @@
+
+; this is the resource file for vector-demo.c, a GEOS application example
+
+HEADER APPLICATION "vectordemo" "VectorDemo" "V1.0" {
+dostype USR
+author "Maciej Witkowiak"
+info "This is a C prog compiled with cc65 and GEOSLib."
+}
diff --git a/samples/geos/yesnores.grc b/samples/geos/yesnores.grc
new file mode 100644 (file)
index 0000000..767a046
--- /dev/null
@@ -0,0 +1,8 @@
+
+; this is the resource file for yesno.c, a GEOS application example
+
+HEADER APPLICATION "yesno" "YesNo" "V1.0" {
+dostype USR
+author "Maciej Witkowiak"
+info "This is a C prog compiled with cc65 and GEOSLib."
+}