* removed a remaining ifndef NEWPPU

replaced by ifdef OLDPPU
  * added uf_finalize to ppu unit
This commit is contained in:
pierre 1998-06-25 10:51:00 +00:00
parent c43a386001
commit e64d70d4cd
2 changed files with 14 additions and 3 deletions

View File

@ -166,7 +166,7 @@ unit files;
destructor done;virtual; destructor done;virtual;
end; end;
{$ifndef NEWPPU} {$ifdef OLDPPU}
type type
tunitheader = array[0..19] of char; tunitheader = array[0..19] of char;
const const
@ -968,7 +968,12 @@ unit files;
end. end.
{ {
$Log$ $Log$
Revision 1.28 1998-06-25 08:48:12 florian Revision 1.29 1998-06-25 10:51:00 pierre
* removed a remaining ifndef NEWPPU
replaced by ifdef OLDPPU
* added uf_finalize to ppu unit
Revision 1.28 1998/06/25 08:48:12 florian
* first version of rtti support * first version of rtti support
Revision 1.27 1998/06/24 14:48:34 peter Revision 1.27 1998/06/24 14:48:34 peter

View File

@ -95,6 +95,7 @@ const
uf_in_library = $10; uf_in_library = $10;
uf_shared_library = $20; uf_shared_library = $20;
uf_smartlink = $40; uf_smartlink = $40;
uf_finalize = $80;
type type
@ -749,7 +750,12 @@ end;
end. end.
{ {
$Log$ $Log$
Revision 1.6 1998-06-16 08:56:26 peter Revision 1.7 1998-06-25 10:51:01 pierre
* removed a remaining ifndef NEWPPU
replaced by ifdef OLDPPU
* added uf_finalize to ppu unit
Revision 1.6 1998/06/16 08:56:26 peter
+ targetcpu + targetcpu
* cleaner pmodules for newppu * cleaner pmodules for newppu