forked from kode54/libupse
-
Notifications
You must be signed in to change notification settings - Fork 0
/
upse-ps1-bios-base.h
36 lines (31 loc) · 1.15 KB
/
upse-ps1-bios-base.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
/*
* UPSE: the unix playstation sound emulator.
*
* Filename: upse-ps1-bios-base.h
* Purpose: libupse: UPSE PS1 FakeBIOS public header
*
* Copyright (c) 2007 William Pitcock <[email protected]>
* Portions copyright (c) 1999-2002 Pcsx Team
* Portions copyright (c) 2004 "Xodnizel"
*
* UPSE is free software, released under the GNU General Public License,
* version 2.
*
* A copy of the GNU General Public License, version 2, is included in
* the UPSE source kit as COPYING.
*
* UPSE is offered without any warranty of any kind, explicit or implicit.
*/
#ifndef _UPSE__LIBUPSE__UPSE_PS1_BIOS_BASE_H__GUARD
#define _UPSE__LIBUPSE__UPSE_PS1_BIOS_BASE_H__GUARD
/* these are for tracing in the executive layer --nenolod */
extern char *biosA0n[256];
extern char *biosB0n[256];
extern char *biosC0n[256];
void upse_ps1_bios_init(upse_module_instance_t *ins);
void upse_ps1_bios_shutdown(upse_module_instance_t *ins);
void upse_ps1_bios_exception(upse_module_instance_t *ins);
extern void (*biosA0[256]) (upse_module_instance_t *ins);
extern void (*biosB0[256]) (upse_module_instance_t *ins);
extern void (*biosC0[256]) (upse_module_instance_t *ins);
#endif