upse-ps1-bios-base.h 1.0 KB

123456789101112131415161718192021222324252627282930313233343536
  1. /*
  2. * UPSE: the unix playstation sound emulator.
  3. *
  4. * Filename: upse-ps1-bios-base.h
  5. * Purpose: libupse: UPSE PS1 FakeBIOS public header
  6. *
  7. * Copyright (c) 2007 William Pitcock <nenolod@sacredspiral.co.uk>
  8. * Portions copyright (c) 1999-2002 Pcsx Team
  9. * Portions copyright (c) 2004 "Xodnizel"
  10. *
  11. * UPSE is free software, released under the GNU General Public License,
  12. * version 2.
  13. *
  14. * A copy of the GNU General Public License, version 2, is included in
  15. * the UPSE source kit as COPYING.
  16. *
  17. * UPSE is offered without any warranty of any kind, explicit or implicit.
  18. */
  19. #ifndef _UPSE__LIBUPSE__UPSE_PS1_BIOS_BASE_H__GUARD
  20. #define _UPSE__LIBUPSE__UPSE_PS1_BIOS_BASE_H__GUARD
  21. /* these are for tracing in the executive layer --nenolod */
  22. extern char *biosA0n[256];
  23. extern char *biosB0n[256];
  24. extern char *biosC0n[256];
  25. void upse_ps1_bios_init(void);
  26. void upse_ps1_bios_shutdown(void);
  27. void upse_ps1_bios_exception(void);
  28. extern void (*biosA0[256]) (void);
  29. extern void (*biosB0[256]) (void);
  30. extern void (*biosC0[256]) (void);
  31. #endif