From: ol.sc
Date: Sat, 4 Feb 2012 19:55:02 +0000 (+0000)
Subject: Moved the 'runtime' files from 'geos-cbm' to 'geos-common' which are believed to...
X-Git-Tag: V2.13.3~20
X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=6cdef72fb392d52a9224249a66e5a41e2fe1318d;p=cc65
Moved the 'runtime' files from 'geos-cbm' to 'geos-common' which are believed to work as-is on Apple GEOS too.
git-svn-id: svn://svn.cc65.org/cc65/trunk@5445 b7a2c559-68d2-44c3-8de9-860c34a00d81
---
diff --git a/libsrc/geos-cbm/Makefile b/libsrc/geos-cbm/Makefile
index 314040fec..1c37df814 100644
--- a/libsrc/geos-cbm/Makefile
+++ b/libsrc/geos-cbm/Makefile
@@ -50,7 +50,6 @@ DIRS = common \
disk \
file \
memory \
- runtime \
system
#--------------------------------------------------------------------------
diff --git a/libsrc/geos-cbm/runtime/Makefile b/libsrc/geos-cbm/runtime/Makefile
deleted file mode 100644
index bcbcbb01c..000000000
--- a/libsrc/geos-cbm/runtime/Makefile
+++ /dev/null
@@ -1,8 +0,0 @@
-#
-# makefile for CC65 runtime library
-#
-
-#--------------------------------------------------------------------------
-# Object files
-
-S_OBJS += call.o
diff --git a/libsrc/geos-cbm/runtime/call.s b/libsrc/geos-cbm/runtime/call.s
deleted file mode 100644
index de457e230..000000000
--- a/libsrc/geos-cbm/runtime/call.s
+++ /dev/null
@@ -1,12 +0,0 @@
-;
-; Maciej 'YTM/Elysium' Witkowiak
-; 23.12.2002
-;
-; CC65 runtime: call function via pointer in ax
-;
-
- .include "jumptab.inc"
-
- .export callax
-
-callax = CallRoutine
diff --git a/libsrc/geos-common/Makefile b/libsrc/geos-common/Makefile
index 746205078..7bdc9a4bf 100644
--- a/libsrc/geos-common/Makefile
+++ b/libsrc/geos-common/Makefile
@@ -35,7 +35,8 @@ DIRS = dlgbox \
memory \
menuicon \
mousesprite \
- process
+ process \
+ runtime
#--------------------------------------------------------------------------
# Directives
diff --git a/libsrc/geos-common/runtime/Makefile b/libsrc/geos-common/runtime/Makefile
new file mode 100644
index 000000000..bcbcbb01c
--- /dev/null
+++ b/libsrc/geos-common/runtime/Makefile
@@ -0,0 +1,8 @@
+#
+# makefile for CC65 runtime library
+#
+
+#--------------------------------------------------------------------------
+# Object files
+
+S_OBJS += call.o
diff --git a/libsrc/geos-common/runtime/call.s b/libsrc/geos-common/runtime/call.s
new file mode 100644
index 000000000..de457e230
--- /dev/null
+++ b/libsrc/geos-common/runtime/call.s
@@ -0,0 +1,12 @@
+;
+; Maciej 'YTM/Elysium' Witkowiak
+; 23.12.2002
+;
+; CC65 runtime: call function via pointer in ax
+;
+
+ .include "jumptab.inc"
+
+ .export callax
+
+callax = CallRoutine