timer.pp 966 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. {
  2. $Id$
  3. This file is part of the Free Pascal run time library.
  4. Copyright (c) 2004 Karoly Balogh for Genesi S.a.r.l. <www.genesi.lu>
  5. timer.device interface unit for MorphOS/PowerPC
  6. MorphOS port was done on a free Pegasos II/G4 machine
  7. provided by Genesi S.a.r.l. <www.genesi.lu>
  8. See the file COPYING.FPC, included in this distribution,
  9. for details about the copyright.
  10. This program is distributed in the hope that it will be useful,
  11. but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
  13. **********************************************************************}
  14. unit timer;
  15. interface
  16. uses
  17. exec;
  18. var
  19. TimerBase : Pointer;
  20. {$include timerd.inc}
  21. {$include timerf.inc}
  22. implementation
  23. begin
  24. end.
  25. {
  26. $Log$
  27. Revision 1.2 2004-08-03 19:45:18 karoly
  28. * fixed missing uses exec
  29. Revision 1.1 2004/06/26 20:46:17 karoly
  30. * initial revision
  31. }