+ more types

+ objpas unit
This commit is contained in:
peter 1999-08-03 20:25:40 +00:00
parent 9f334f17ac
commit f3079dff58
2 changed files with 17 additions and 4 deletions

4
rtl/fakertl/objpas.pp Normal file
View File

@ -0,0 +1,4 @@
unit objpas;
interface
implementation
end.

View File

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