Browse Source

Add configuration options for i8086 and m68k CPUs

git-svn-id: trunk@36832 -
pierre 8 years ago
parent
commit
7966957ec9
1 changed files with 23 additions and 0 deletions
  1. 23 0
      rtl/embedded/rtl.cfg

+ 23 - 0
rtl/embedded/rtl.cfg

@@ -115,3 +115,26 @@
 -SfCLASSES
 -SfRTTI
 #endif
+
+# Minimal set for m68k, copied from AVR above
+# does not require extra memory, neither code nor data
+# in programs not using e. g. writeln based I/O 
+#ifdef CPUM68K
+-SfOBJECTS
+-SfEXCEPTIONS
+-SfCLASSES
+-SfRTTI
+#endif
+
+# Minimal set for i8086, copied from AVR above
+# does not require extra memory, neither code nor data
+# in programs not using e. g. writeln based I/OR
+#ifdef CPUI8086
+-SfOBJECTS
+-SfEXCEPTIONS
+-SfCLASSES
+-SfRTTI
+-Cs2048
+-CX
+-XX
+#endif