platform.c 1.1 KB

12345678910111213141516171819202122232425262728293031
  1. /* MegaZeux
  2. *
  3. * Copyright (C) 2009 Alistair John Strachan <alistair@devzero.co.uk>
  4. * Copyright (C) 2007-2009 Kevin Vance <kvance@kvance.com>
  5. *
  6. * This program is free software; you can redistribute it and/or
  7. * modify it under the terms of the GNU General Public License as
  8. * published by the Free Software Foundation; either version 2 of
  9. * the License, or (at your option) any later version.
  10. *
  11. * This program is distributed in the hope that it will be useful,
  12. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  14. * General Public License for more details.
  15. *
  16. * You should have received a copy of the GNU General Public License
  17. * along with this program; if not, write to the Free Software
  18. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  19. */
  20. #include <stdio.h>
  21. #include <pspsdk.h>
  22. #include <pspkernel.h>
  23. #include <pspdebug.h>
  24. #include <pspctrl.h>
  25. PSP_MODULE_INFO("MegaZeux", 0, 1, 1);
  26. PSP_MAIN_THREAD_ATTR(THREAD_ATTR_USER | THREAD_ATTR_VFPU);
  27. PSP_MAIN_THREAD_STACK_SIZE_KB(512);