@@ -0,0 +1,4 @@
+unit objpas;
+interface
+implementation
+end.
@@ -1,9 +1,18 @@
-{ This is a fake system unit to allow testing of the new code generator }
-
unit system;
+
+type
+ integer=-32768..32767;
+ byte=0..255;
+ word=0..65535;
+ longint=$80000000..$7fffffff;
+ pchar=^char;
- interface
- implementation
+procedure do_exit;[public,alias:'FPC_DO_EXIT'];
+begin
+end;
end.