Browse Source

* compiler know uses standard RTL

mazen 23 years ago
parent
commit
4190d8ff89
2 changed files with 2 additions and 12 deletions
  1. 2 0
      tests/sparc/sparc.pas
  2. 0 12
      tests/sparc/system.pas

+ 2 - 0
tests/sparc/sparc.pas

@@ -1,3 +1,5 @@
+{$UNITPATH ../../rtl/linux}
+{$INCLUDEPATH ../../rtl/unix;../../rtl/inc;../../rtl/unix;../../rtl/sparc}
 PROGRAM SparcTest;
 PROGRAM SparcTest;
 VAR
 VAR
   x,y:Cardinal; 
   x,y:Cardinal; 

+ 0 - 12
tests/sparc/system.pas

@@ -1,12 +0,0 @@
-UNIT {SPARC}System;
-INTERFACE
-CONST
-  MaxInt=1 SHL 16 - 1;
-	MaxCardinal=1 SHL 32 - 1;
-TYPE
-  Integer=-MaxInt-1..MaxInt;
-	Cardinal=0..MaxCardinal;
-VAR
-  Input,Output:Text;
-IMPLEMENTATION
-END.