mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-21 11:09:27 +02:00
+ more types
+ objpas unit
This commit is contained in:
parent
9f334f17ac
commit
f3079dff58
4
rtl/fakertl/objpas.pp
Normal file
4
rtl/fakertl/objpas.pp
Normal file
@ -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;
|
||||
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.
|
||||
|
Loading…
Reference in New Issue
Block a user