map000.c
 1  /*
 2  ** Nofrendo (c) 1998-2000 Matthew Conte (matt@conte.com)
 3  **
 4  **
 5  ** This program is free software; you can redistribute it and/or
 6  ** modify it under the terms of version 2 of the GNU Library General 
 7  ** Public License as published by the Free Software Foundation.
 8  **
 9  ** This program is distributed in the hope that it will be useful, 
10  ** but WITHOUT ANY WARRANTY; without even the implied warranty of
11  ** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU 
12  ** Library General Public License for more details.  To obtain a 
13  ** copy of the GNU Library General Public License, write to the Free 
14  ** Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
15  **
16  ** Any permitted reproduction of these routines, in whole or in part,
17  ** must bear this legend.
18  **
19  **
20  ** map0.c
21  **
22  ** mapper 0 interface
23  ** $Id: map000.c,v 1.2 2001/04/27 14:37:11 neil Exp $
24  */
25  
26  #include "noftypes.h"
27  #include "nes_mmc.h"
28  
29  const mapintf_t map0_intf = 
30  {
31     0, /* mapper number */
32     "None", /* mapper name */
33     NULL, /* init routine */
34     NULL, /* vblank callback */
35     NULL, /* hblank callback */
36     NULL, /* get state (snss) */
37     NULL, /* set state (snss) */
38     NULL, /* memory read structure */
39     NULL, /* memory write structure */
40     NULL /* external sound device */
41  };
42  
43  /*
44  ** $Log: map000.c,v $
45  ** Revision 1.2  2001/04/27 14:37:11  neil
46  ** wheeee
47  **
48  ** Revision 1.1  2001/04/27 12:54:40  neil
49  ** blah
50  **
51  ** Revision 1.1.1.1  2001/04/27 07:03:54  neil
52  ** initial
53  **
54  ** Revision 1.1  2000/10/24 12:19:32  matt
55  ** changed directory structure
56  **
57  ** Revision 1.2  2000/07/06 02:48:43  matt
58  ** clearly labelled structure members
59  **
60  ** Revision 1.1  2000/07/04 23:11:45  matt
61  ** initial revision
62  **
63  */