upse_util.c 703 B

12345678910111213141516171819202122232425262728293031323334
  1. /*
  2. * UPSE: the unix playstation sound emulator.
  3. *
  4. * Filename: upse_util.c
  5. * Purpose: libupse: utility functions
  6. *
  7. * Copyright (c) 2007 William Pitcock <nenolod@sacredspiral.co.uk>
  8. *
  9. * UPSE is free software, released under the GNU General Public License,
  10. * version 2.
  11. *
  12. * A copy of the GNU General Public License, version 2, is included in
  13. * the UPSE source kit as COPYING.
  14. *
  15. * UPSE is offered without any warranty of any kind, explicit or implicit.
  16. */
  17. #include <stdio.h>
  18. #include <string.h>
  19. #include <stdlib.h>
  20. #include <stdarg.h>
  21. #include "upse-internal.h"
  22. #include "upse.h"
  23. #include "upse-string.h"
  24. void upse_execute(void)
  25. {
  26. _ENTER;
  27. upse_r3000_cpu_execute();
  28. _LEAVE;
  29. }