flashend.c 528 B

123456789101112131415161718192021222324
  1. /*
  2. * GTools C compiler
  3. * =================
  4. * source file :
  5. * (on-calc) end of flashapp marker
  6. *
  7. * Copyright 2001-2004 Paul Froissart.
  8. * Credits to Christoph van Wuellen and Matthew Brandt.
  9. * All commercial rights reserved.
  10. *
  11. * This compiler may be redistributed as long there is no
  12. * commercial interest. The compiler must not be redistributed
  13. * without its full sources. This notice must stay intact.
  14. */
  15. asm(
  16. " .text\n"
  17. " .align 4\n"
  18. " .fdat\n"
  19. " .align 4\n"
  20. " .bss\n"
  21. " .align 4\n"
  22. " .fdat\n");
  23. // vim:ts=4:sw=4