reanme to quickdev16

This commit is contained in:
optixx
2009-08-28 09:12:33 +02:00
parent 98c470dbc0
commit 3381998d0f
8 changed files with 19 additions and 15 deletions

View File

@@ -60,7 +60,7 @@ Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
#endif
#ifdef USE_USB
#include "snesram.h"
#include "quickdev16.h"
#endif // USE_PARALLEL

View File

@@ -1,5 +1,5 @@
/*
snesram.c - Snesram support for uCON64
quickdev16.c - Quickdev16 support for uCON64
Copyright (c) 2009 david@optixx.org
@@ -40,23 +40,23 @@ Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
#include "ucon64_misc.h"
#include "ffe.h"
#include "smc.h"
#include "snesram.h"
#include "quickdev16.h"
#include "console/snes.h"
#define SNES_HEADER_LEN (sizeof (st_snes_header_t))
const st_getopt2_t snesram_usage[] =
const st_getopt2_t quickdev16_usage[] =
{
{
NULL, 0, 0, 0,
NULL, "Snesram"/* http://www.optixx.org */,
NULL, "Quickdev16"/* http://www.optixx.org */,
NULL
},
#ifdef USE_USB
{
"xsnesram", 0, 0, UCON64_XSNESRAM, // send only
NULL, "send ROM (in FFE format) to Snesram",
"xquickdev16", 0, 0, UCON64_XSNESRAM, // send only
NULL, "send ROM (in FFE format) to Quickdev16",
&ucon64_wf[WF_OBJ_NES_DEFAULT_STOP_NO_SPLIT]
},
#endif
@@ -72,7 +72,7 @@ const st_getopt2_t snesram_usage[] =
#define SNES_LOROM_SHIFT 15
int
snesram_write_rom (const char *filename)
quickdev16_write_rom (const char *filename)
{
FILE *file;
int bytesread, bytessend, size;

View File

@@ -1,5 +1,5 @@
/*
snesram.h - Snesram support for uCON64
quickdev16.h - Quickdev16 support for uCON64
Copyright (c) 2009 david@optixx.org
@@ -72,10 +72,10 @@ Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
* use a shared VID/PID.
*/
extern const st_getopt2_t snesram_usage[];
extern const st_getopt2_t quickdev16_usage[];
#ifdef USE_USB
extern int snesram_write_rom (const char *filename);
extern int quickdev16_write_rom (const char *filename);
#endif
#endif // SNESRAM_H