si_prc.pp 764 B

123456789101112131415161718192021222324252627282930313233343536
  1. {
  2. This file is part of the Free Pascal run time library.
  3. Copyright (c) 2021 by Free Pascal development team
  4. This file implements the startup code for WebAssembly programs that
  5. don't link to the C library.
  6. See the file COPYING.FPC, included in this distribution,
  7. for details about the copyright.
  8. This program is distributed in the hope that it will be useful,
  9. but WITHOUT ANY WARRANTY; without even the implied warranty of
  10. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
  11. **********************************************************************}
  12. unit si_prc;
  13. interface
  14. procedure _start;
  15. implementation
  16. procedure PASCALMAIN; external 'PASCALMAIN';
  17. procedure _start;
  18. begin
  19. PASCALMAIN;
  20. end;
  21. exports
  22. _start;
  23. end.