+2006-10-17 Tim-Philipp Müller <tim at centricular dot net>
+
+ Patch by: Josep Torra Valles <josep at fluendo com>
+
+ * gst/nsf/fds_snd.c:
+ * gst/nsf/mmc5_snd.c:
+ * gst/nsf/nsf.c:
+ * gst/nsf/vrc7_snd.c:
+ * gst/nsf/vrcvisnd.c:
+ Fix some things the Forte compiler warns about (#362626).
+
2006-10-17 Tim-Philipp Müller <tim at centricular dot net>
* gst/qtdemux/qtdemux.c: (qtdemux_parse_moov), (qtdemux_parse),
** $Id$
*/
+#include <stdio.h>
#include "types.h"
#include "nes_apu.h"
#include "fds_snd.h"
static apu_memwrite fds_memwrite[] = {
{0x4040, 0x4092, fds_write},
- {-1, -1, NULL}
+ {(uint32) - 1, (uint32) - 1, NULL}
};
apuext_t fds_ext = {
/*
** $Log$
+** Revision 1.2 2006/10/17 11:04:14 tpm
+** Patch by: Josep Torra Valles <josep at fluendo com>
+** * gst/nsf/fds_snd.c:
+** * gst/nsf/mmc5_snd.c:
+** * gst/nsf/nsf.c:
+** * gst/nsf/vrc7_snd.c:
+** * gst/nsf/vrcvisnd.c:
+** Fix some things the Forte compiler warns about (#362626).
+**
** Revision 1.1 2006/07/13 15:07:28 wtay
** Based on patches by: Johan Dahlin <johan at gnome dot org>
** Ronald Bultje <rbultje at ronald dot bitfreak dot net>
static apu_memread mmc5_memread[] = {
{0x5205, 0x5206, mmc5_read},
- {-1, -1, NULL}
+ {(uint32) - 1, (uint32) - 1, NULL}
};
static apu_memwrite mmc5_memwrite[] = {
{0x5000, 0x5015, mmc5_write},
{0x5205, 0x5206, mmc5_write},
- {-1, -1, NULL}
+ {(uint32) - 1, (uint32) - 1, NULL}
};
apuext_t mmc5_ext = {
/*
** $Log$
+** Revision 1.2 2006/10/17 11:04:14 tpm
+** Patch by: Josep Torra Valles <josep at fluendo com>
+** * gst/nsf/fds_snd.c:
+** * gst/nsf/mmc5_snd.c:
+** * gst/nsf/nsf.c:
+** * gst/nsf/vrc7_snd.c:
+** * gst/nsf/vrcvisnd.c:
+** Fix some things the Forte compiler warns about (#362626).
+**
** Revision 1.1 2006/07/13 15:07:28 wtay
** Based on patches by: Johan Dahlin <johan at gnome dot org>
** Ronald Bultje <rbultje at ronald dot bitfreak dot net>
static nes6502_memread default_readhandler[] = {
{0x0800, 0x1FFF, read_mirrored_ram},
{0x4000, 0x4017, apu_read},
- {-1, -1, NULL}
+ {(uint32) - 1, (uint32) - 1, NULL}
};
static nes6502_memwrite default_writehandler[] = {
{0x0800, 0x1FFF, write_mirrored_ram},
{0x4000, 0x4017, apu_write},
{0x5FF6, 0x5FFF, nsf_bankswitch},
- {-1, -1, NULL}
+ {(uint32) - 1, (uint32) - 1, NULL}
};
static uint8
/*
** $Log$
+** Revision 1.4 2006/10/17 11:04:14 tpm
+** Patch by: Josep Torra Valles <josep at fluendo com>
+** * gst/nsf/fds_snd.c:
+** * gst/nsf/mmc5_snd.c:
+** * gst/nsf/nsf.c:
+** * gst/nsf/vrc7_snd.c:
+** * gst/nsf/vrcvisnd.c:
+** Fix some things the Forte compiler warns about (#362626).
+**
** Revision 1.3 2006/07/19 11:43:50 tpm
** * gst/nsf/nsf.c: (nsf_load):
** Really fix compilation. Apparently it's not enough to
static apu_memwrite vrc7_memwrite[] = {
{0x9010, 0x9010, vrc7_write},
{0x9030, 0x9030, vrc7_write},
- {-1, -1, NULL}
+ {(uint32) - 1, (uint32) - 1, NULL}
};
apuext_t vrc7_ext = {
/*
** $Log$
+** Revision 1.2 2006/10/17 11:04:14 tpm
+** Patch by: Josep Torra Valles <josep at fluendo com>
+** * gst/nsf/fds_snd.c:
+** * gst/nsf/mmc5_snd.c:
+** * gst/nsf/nsf.c:
+** * gst/nsf/vrc7_snd.c:
+** * gst/nsf/vrcvisnd.c:
+** Fix some things the Forte compiler warns about (#362626).
+**
** Revision 1.1 2006/07/13 15:07:28 wtay
** Based on patches by: Johan Dahlin <johan at gnome dot org>
** Ronald Bultje <rbultje at ronald dot bitfreak dot net>
** $Id$
*/
+#include <stdio.h>
#include "types.h"
#include "vrcvisnd.h"
#include "nes_apu.h"
{0x9000, 0x9002, vrcvi_write}, /* vrc6 */
{0xA000, 0xA002, vrcvi_write},
{0xB000, 0xB002, vrcvi_write},
- {-1, -1, NULL}
+ {(uint32) - 1, (uint32) - 1, NULL}
};
apuext_t vrcvi_ext = {
/*
** $Log$
+** Revision 1.2 2006/10/17 11:04:14 tpm
+** Patch by: Josep Torra Valles <josep at fluendo com>
+** * gst/nsf/fds_snd.c:
+** * gst/nsf/mmc5_snd.c:
+** * gst/nsf/nsf.c:
+** * gst/nsf/vrc7_snd.c:
+** * gst/nsf/vrcvisnd.c:
+** Fix some things the Forte compiler warns about (#362626).
+**
** Revision 1.1 2006/07/13 15:07:28 wtay
** Based on patches by: Johan Dahlin <johan at gnome dot org>
** Ronald Bultje <rbultje at ronald dot bitfreak dot net>