Browse Source

* moved delaycnt from interface to implementation

peter 27 years ago
parent
commit
b2e9bb2cf5
1 changed files with 11 additions and 9 deletions
  1. 11 9
      rtl/dos/crt.pp

+ 11 - 9
rtl/dos/crt.pp

@@ -1,8 +1,9 @@
 {
 {
     $Id$
     $Id$
     This file is part of the Free Pascal run time library.
     This file is part of the Free Pascal run time library.
-    Copyright (c) 1993,97 by Florian Klaempfl,
-    member of the Free Pascal development team.
+    Copyright (c) 1993-98 by the Free Pascal development team.
+
+    Borland Pascal 7 Compatible CRT Unit for Go32V1 and Go32V2
 
 
     See the file COPYING.FPC, included in this distribution,
     See the file COPYING.FPC, included in this distribution,
     for details about the copyright.
     for details about the copyright.
@@ -15,13 +16,8 @@
 unit crt;
 unit crt;
 interface
 interface
 
 
-  var
-    DelayCnt : longint;
-
 {$I os.inc}
 {$I os.inc}
 
 
-{$I386_ATT}
-
 const
 const
 { CRT modes }
 { CRT modes }
   BW40          = 0;            { 40x25 B/W on Color Adapter }
   BW40          = 0;            { 40x25 B/W on Color Adapter }
@@ -103,11 +99,14 @@ implementation
 uses
 uses
   go32;
   go32;
 
 
-{$I386_ATT} {can be removed in the future}
+{$ifdef VER0_99_5}
+  {$I386_ATT} {can be removed in the future}
+{$endif}
 
 
 {$ASMMODE ATT}
 {$ASMMODE ATT}
 
 
 var
 var
+  DelayCnt,
   ScreenWidth,
   ScreenWidth,
   ScreenHeight : longint;
   ScreenHeight : longint;
 
 
@@ -924,7 +923,10 @@ end.
 
 
 {
 {
   $Log$
   $Log$
-  Revision 1.8  1998-08-08 21:56:45  peter
+  Revision 1.9  1998-08-15 17:00:10  peter
+    * moved delaycnt from interface to implementation
+
+  Revision 1.8  1998/08/08 21:56:45  peter
     * updated crt with new delay, almost like bp7 routine
     * updated crt with new delay, almost like bp7 routine
 
 
   Revision 1.5  1998/05/31 14:18:12  peter
   Revision 1.5  1998/05/31 14:18:12  peter