Thread: [Fuse-for-macosx-commits] SF.net SVN: fuse-for-macosx: [345] branches/Release-0_8_0/fuse
Brought to you by:
fredm
|
From: <fr...@us...> - 2007-04-09 02:29:57
|
Revision: 345
http://svn.sourceforge.net/fuse-for-macosx/?rev=345&view=rev
Author: fredm
Date: 2007-04-08 19:29:58 -0700 (Sun, 08 Apr 2007)
Log Message:
-----------
Merge up to fuse-20070404.
Modified Paths:
--------------
branches/Release-0_8_0/fuse/compat/mkstemp.c
branches/Release-0_8_0/fuse/hacking/ChangeLog
branches/Release-0_8_0/fuse/joystick.c
branches/Release-0_8_0/fuse/machines/spec_se.c
branches/Release-0_8_0/fuse/periph.c
branches/Release-0_8_0/fuse/printer.c
Modified: branches/Release-0_8_0/fuse/compat/mkstemp.c
===================================================================
--- branches/Release-0_8_0/fuse/compat/mkstemp.c 2007-04-09 02:18:55 UTC (rev 344)
+++ branches/Release-0_8_0/fuse/compat/mkstemp.c 2007-04-09 02:29:58 UTC (rev 345)
@@ -95,7 +95,6 @@
XXXXXX[5] = letters[v % 62];
fd = open (tmpl, O_RDWR | O_CREAT | O_EXCL, S_IRUSR | S_IWUSR);
- break;
if (fd >= 0)
{
Modified: branches/Release-0_8_0/fuse/hacking/ChangeLog
===================================================================
--- branches/Release-0_8_0/fuse/hacking/ChangeLog 2007-04-09 02:18:55 UTC (rev 344)
+++ branches/Release-0_8_0/fuse/hacking/ChangeLog 2007-04-09 02:29:58 UTC (rev 345)
@@ -1562,3 +1562,15 @@
20070306 display.c: don't overrun line_times array (Release-0_8_0-branch)
(Fred).
20070310 man/fuse.1: add divide url (Release-0_8_0-branch) (Fred).
+20070311 machines/spec_se.c: fix marking Dock and EXROM banks as writable in
+ the SE (Release-0_8_0-branch) (thanks, Andrew Owen) (Fred).
+20070317 compat/mkstemp.c: remove abberant break (thanks, Marek Januszewski)
+ (Release-0_8_0-branch).
+20070321 periph.c: when stopping RZX playback due to overrun, ensure the
+ change is picked up in z80_do_opcodes() (thanks, Julian Wiseman)
+ (Release-0_8_0-branch).
+20070327 joystick.c: don't prompt for joystick config changes when loading a
+ snap during RZX playback (Release-0_8_0-branch)
+ (thanks, Julian Wiseman) (Fred).
+20070404 printer.c: don't buffer output so text is available as it is
+ printed (Release-0_8_0-branch) (Fred).
Modified: branches/Release-0_8_0/fuse/joystick.c
===================================================================
--- branches/Release-0_8_0/fuse/joystick.c 2007-04-09 02:18:55 UTC (rev 344)
+++ branches/Release-0_8_0/fuse/joystick.c 2007-04-09 02:29:58 UTC (rev 345)
@@ -2,7 +2,7 @@
Copyright (c) 2001-2004 Russell Marks, Philip Kendall
Copyright (c) 2003 Darren Salt
- $Id: joystick.c,v 1.25 2007/02/02 16:21:51 pak21 Exp $
+ $Id: joystick.c,v 1.25.2.1 2007/03/27 11:32:23 fredm Exp $
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
@@ -32,6 +32,7 @@
#include "joystick.h"
#include "keyboard.h"
#include "periph.h"
+#include "rzx.h"
#include "settings.h"
#include "spectrum.h"
#include "machine.h"
@@ -220,7 +221,8 @@
if( settings_current.joystick_keyboard_output != fuse_type &&
settings_current.joystick_1_output != fuse_type &&
- settings_current.joystick_2_output != fuse_type ) {
+ settings_current.joystick_2_output != fuse_type &&
+ !rzx_playback ) {
switch( ui_confirm_joystick( libspectrum_snap_joystick_list(snap,i),
libspectrum_snap_joystick_inputs(snap,i)) ) {
case UI_CONFIRM_JOYSTICK_KEYBOARD:
Modified: branches/Release-0_8_0/fuse/machines/spec_se.c
===================================================================
--- branches/Release-0_8_0/fuse/machines/spec_se.c 2007-04-09 02:18:55 UTC (rev 344)
+++ branches/Release-0_8_0/fuse/machines/spec_se.c 2007-04-09 02:29:58 UTC (rev 345)
@@ -5,7 +5,7 @@
Copyright (c) 1999-2002 Philip Kendall
Copyright (c) 2002-2003 Fredrick Meunier
- $Id: spec_se.c,v 1.15 2007/02/02 16:21:54 pak21 Exp $
+ $Id: spec_se.c,v 1.15.2.1 2007/03/11 01:06:42 fredm Exp $
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
@@ -202,6 +202,10 @@
periph_setup_interface2( PERIPH_PRESENT_OPTIONAL );
periph_update();
+ /* Mark as present/writeable */
+ for( i = 0; i < 34; ++i )
+ memory_map_ram[i].writable = 1;
+
for( i = 0; i < 8; i++ ) {
timex_dock[i] = memory_map_ram[ i + 18 ];
@@ -230,10 +234,6 @@
memset( memory_map_home[4]->page, 0, MEMORY_PAGE_SIZE );
memset( memory_map_home[5]->page, 0, MEMORY_PAGE_SIZE );
- /* Mark as present/writeable */
- for( i = 0; i < 34; ++i )
- memory_map_ram[i].writable = 1;
-
/* RAM pages 1, 3, 5 and 7 contended */
for( i = 0; i < 8; i++ )
memory_map_ram[ 2 * i ].contended =
Modified: branches/Release-0_8_0/fuse/periph.c
===================================================================
--- branches/Release-0_8_0/fuse/periph.c 2007-04-09 02:18:55 UTC (rev 344)
+++ branches/Release-0_8_0/fuse/periph.c 2007-04-09 02:29:58 UTC (rev 345)
@@ -1,7 +1,7 @@
/* periph.c: code for handling peripherals
- Copyright (c) 2005 Philip Kendall
+ Copyright (c) 2005-2007 Philip Kendall
- $Id: periph.c,v 1.20 2007/02/02 16:21:51 pak21 Exp $
+ $Id: periph.c,v 1.20.2.1 2007/03/21 16:21:54 pak21 Exp $
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
@@ -29,6 +29,7 @@
#include "debugger/debugger.h"
#include "divide.h"
+#include "event.h"
#include "if1.h"
#include "if2.h"
#include "joystick.h"
@@ -191,8 +192,15 @@
libspectrum_byte value;
error = libspectrum_rzx_playback( rzx, &value );
- if( error ) { rzx_stop_playback( 1 ); return readport_internal( port ); }
+ if( error ) {
+ rzx_stop_playback( 1 );
+ /* Add a null event to mean we pick up the RZX state change in
+ z80_do_opcodes() */
+ event_add( tstates, EVENT_TYPE_NULL );
+ return readport_internal( port );
+ }
+
return value;
}
Modified: branches/Release-0_8_0/fuse/printer.c
===================================================================
--- branches/Release-0_8_0/fuse/printer.c 2007-04-09 02:18:55 UTC (rev 344)
+++ branches/Release-0_8_0/fuse/printer.c 2007-04-09 02:29:58 UTC (rev 345)
@@ -1,7 +1,7 @@
/* printer.c: Printer support
Copyright (c) 2001-2004 Ian Collier, Russell Marks, Philip Kendall
- $Id: printer.c,v 1.20 2007/02/02 16:21:51 pak21 Exp $
+ $Id: printer.c,v 1.20.2.1 2007/04/04 10:48:08 fredm Exp $
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
@@ -182,6 +182,9 @@
return(0);
}
+/* ensure users have immediate access to text file contents */
+setbuf( printer_text_file, NULL );
+
return(1);
}
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <fr...@us...> - 2007-04-09 11:42:57
|
Revision: 347
http://svn.sourceforge.net/fuse-for-macosx/?rev=347&view=rev
Author: fredm
Date: 2007-04-09 04:42:58 -0700 (Mon, 09 Apr 2007)
Log Message:
-----------
Merge in changes from Fuse to reset rzx_instructions_offset on rollback
to fix replay of rolled back recordings (and some refactoring).
Modified Paths:
--------------
branches/Release-0_8_0/fuse/fusepb/controllers/FuseController.m
branches/Release-0_8_0/fuse/fusepb/controllers/RollbackController.m
branches/Release-0_8_0/fuse/rzx.c
branches/Release-0_8_0/fuse/rzx.h
Modified: branches/Release-0_8_0/fuse/fusepb/controllers/FuseController.m
===================================================================
--- branches/Release-0_8_0/fuse/fusepb/controllers/FuseController.m 2007-04-09 11:40:55 UTC (rev 346)
+++ branches/Release-0_8_0/fuse/fusepb/controllers/FuseController.m 2007-04-09 11:42:58 UTC (rev 347)
@@ -531,15 +531,9 @@
fuse_emulation_pause();
- error = libspectrum_rzx_rollback( rzx, &snap );
+ error = rzx_rollback();
if( error ) { fuse_emulation_unpause(); return; }
- error = snapshot_copy_from( snap );
- if( error ) { fuse_emulation_unpause(); return; }
-
- error = libspectrum_rzx_start_input( rzx, tstates );
- if( error ) { fuse_emulation_unpause(); return; }
-
fuse_emulation_unpause();
}
Modified: branches/Release-0_8_0/fuse/fusepb/controllers/RollbackController.m
===================================================================
--- branches/Release-0_8_0/fuse/fusepb/controllers/RollbackController.m 2007-04-09 11:40:55 UTC (rev 346)
+++ branches/Release-0_8_0/fuse/fusepb/controllers/RollbackController.m 2007-04-09 11:42:58 UTC (rev 347)
@@ -79,10 +79,8 @@
[rollbackPoints selectedRow] );
if( error ) [self cancel:self];
- error = snapshot_copy_from( snap );
+ error = rzx_start_after_rollback( snap );
if( error ) [self cancel:self];
-
- libspectrum_rzx_start_input( rzx, tstates );
}
[self cancel:self];
Modified: branches/Release-0_8_0/fuse/rzx.c
===================================================================
--- branches/Release-0_8_0/fuse/rzx.c 2007-04-09 11:40:55 UTC (rev 346)
+++ branches/Release-0_8_0/fuse/rzx.c 2007-04-09 11:42:58 UTC (rev 347)
@@ -480,8 +480,8 @@
return rollback_points;
}
-static int
-start_after_rollback( libspectrum_snap *snap )
+int
+rzx_start_after_rollback( libspectrum_snap *snap )
{
int error;
@@ -506,7 +506,7 @@
error = libspectrum_rzx_rollback( rzx, &snap );
if( error ) return error;
- error = start_after_rollback( snap );
+ error = rzx_start_after_rollback( snap );
if( error ) return error;
return 0;
@@ -528,7 +528,7 @@
error = libspectrum_rzx_rollback_to( rzx, &snap, which );
if( error ) return error;
- error = start_after_rollback( snap );
+ error = rzx_start_after_rollback( snap );
if( error ) return error;
return 0;
Modified: branches/Release-0_8_0/fuse/rzx.h
===================================================================
--- branches/Release-0_8_0/fuse/rzx.h 2007-04-09 11:40:55 UTC (rev 346)
+++ branches/Release-0_8_0/fuse/rzx.h 2007-04-09 11:42:58 UTC (rev 347)
@@ -80,6 +80,8 @@
int rzx_rollback_to( void );
+int rzx_start_after_rollback( libspectrum_snap *snap );
+
GSList* rzx_get_rollback_list( libspectrum_rzx *rzx );
#endif /* #ifndef FUSE_RZX_H */
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <fr...@us...> - 2007-04-11 12:59:03
|
Revision: 353
http://svn.sourceforge.net/fuse-for-macosx/?rev=353&view=rev
Author: fredm
Date: 2007-04-11 05:59:00 -0700 (Wed, 11 Apr 2007)
Log Message:
-----------
Merge up to fuse-0.8.0
Modified Paths:
--------------
branches/Release-0_8_0/fuse/ChangeLog
branches/Release-0_8_0/fuse/README
branches/Release-0_8_0/fuse/configure.in
branches/Release-0_8_0/fuse/fuse.cpp
branches/Release-0_8_0/fuse/fusepb/English.lproj/InfoPlist.strings
branches/Release-0_8_0/fuse/fusepb/Info-Fuse.plist
branches/Release-0_8_0/fuse/fusepb/config.h
branches/Release-0_8_0/fuse/fusepb/controllers/FuseController.m
branches/Release-0_8_0/fuse/hacking/ChangeLog
branches/Release-0_8_0/fuse/hacking/cvs-tags
branches/Release-0_8_0/fuse/man/fuse.1
branches/Release-0_8_0/fuse/rzx.c
Modified: branches/Release-0_8_0/fuse/ChangeLog
===================================================================
--- branches/Release-0_8_0/fuse/ChangeLog 2007-04-11 12:33:42 UTC (rev 352)
+++ branches/Release-0_8_0/fuse/ChangeLog 2007-04-11 12:59:00 UTC (rev 353)
@@ -1,4 +1,4 @@
-2007-??-?? Philip Kendall <phi...@sh...>
+2007-04-11 Philip Kendall <phi...@sh...>
* Fuse 0.8.0 released
@@ -81,6 +81,11 @@
Szasz, Paul van der Laan and other people to whom I apologise
for forgetting).
+ * On a personal note, I (Philip) would like to dedicate the 0.8
+ release of Fuse to the memory of Chris "Oggie" Lightfoot. I
+ don't know whether he would have loved or hated some of the code
+ in Fuse, but I'm sure he would have expressed his opinion.
+
2004-07-16 Philip Kendall <pak...@sr...>
* Fuse 0.7.0 released.
@@ -783,4 +788,4 @@
* Version 0.1.0 released.
-$Id: ChangeLog,v 1.46 2007/02/02 16:21:50 pak21 Exp $
+$Id: ChangeLog,v 1.46.2.1 2007/04/09 16:59:02 pak21 Exp $
Modified: branches/Release-0_8_0/fuse/README
===================================================================
--- branches/Release-0_8_0/fuse/README 2007-04-11 12:33:42 UTC (rev 352)
+++ branches/Release-0_8_0/fuse/README 2007-04-11 12:59:00 UTC (rev 353)
@@ -1,4 +1,4 @@
-The Free Unix Spectrum Emulator (Fuse) 0.7.0
+The Free Unix Spectrum Emulator (Fuse) 0.8.0
============================================
Fuse (the Free Unix Spectrum Emulator) was originally, and somewhat
@@ -10,9 +10,10 @@
What Fuse does have:
-* Working Spectrum 16K/48K/128K/+2/+2A/+3/+3e/SE, Timex TC2048/TC2068,
- Pentagon 128 and Scorpion ZS 256 emulation, running at true Speccy
- speed on any computer you're likely to try it on.
+* Working Spectrum 16K/48K/128K/+2/+2A/+3/+3e/SE, Timex TC2048,
+ TC2068 and TS2068, Pentagon 128 and Scorpion ZS 256 emulation,
+ running at true Speccy speed on any computer you're likely to try it
+ on.
* Support for loading from .tzx files.
* Sound (on systems supporting the Open Sound System, SDL, or OpenBSD/
Solaris's /dev/audio).
@@ -20,8 +21,9 @@
(including Kempston, Sinclair and Cursor joysticks).
* Emulation of some of the printers you could attach to a Spectrum.
* Support for the RZX input recording file format, including
- 'competition mode'.
-* Emulation of the Spectrum +3e, ZXATASP and ZXCF IDE interfaces.
+ rollback and 'competition mode'.
+* Emulation of the DivIDE, Interface I, Kempston mouse, Spectrum +3e,
+ ZXATASP and ZXCF interfaces.
What you'll need to run Fuse
----------------------------
@@ -30,8 +32,8 @@
Required:
-* X, SDL, svgalib, framebuffer support. If you have GTK+, you'll get a
- (much) nicer user interface under X.
+* X, SDL, svgalib or framebuffer support. If you have GTK+, you'll get
+ a (much) nicer user interface under X.
* libspectrum: this is available from
http://fuse-emulator.sourceforge.net/libspectrum.php
@@ -137,6 +139,6 @@
( http://www.worldofspectrum.org/faq/index.html ) first!
Philip Kendall <phi...@sh...>
-16 July 2004
+11 April 2007
-$Id: README,v 1.40 2007/02/02 16:21:50 pak21 Exp $
+$Id: README,v 1.40.2.2 2007/04/11 08:44:19 pak21 Exp $
Modified: branches/Release-0_8_0/fuse/configure.in
===================================================================
--- branches/Release-0_8_0/fuse/configure.in 2007-04-11 12:33:42 UTC (rev 352)
+++ branches/Release-0_8_0/fuse/configure.in 2007-04-11 12:59:00 UTC (rev 353)
@@ -1,5 +1,5 @@
dnl Process this file with autoconf to produce a configure script.
-dnl $Id: configure.in,v 1.155.2.1 2007/03/03 21:26:14 pak21 Exp $
+dnl $Id: configure.in,v 1.155.2.2 2007/04/09 16:59:02 pak21 Exp $
dnl This program is free software; you can redistribute it and/or modify
dnl it under the terms of the GNU General Public License as published by
@@ -24,7 +24,7 @@
AC_CANONICAL_SYSTEM
dnl Use automake to produce `Makefile.in'
-AM_INIT_AUTOMAKE(fuse, 0.7.0)
+AM_INIT_AUTOMAKE(fuse, 0.8.0)
dnl Checks for programs.
AC_PROG_CC
Modified: branches/Release-0_8_0/fuse/fuse.cpp
===================================================================
--- branches/Release-0_8_0/fuse/fuse.cpp 2007-04-11 12:33:42 UTC (rev 352)
+++ branches/Release-0_8_0/fuse/fuse.cpp 2007-04-11 12:59:00 UTC (rev 353)
@@ -1,7 +1,7 @@
/* fuse.c: The Free Unix Spectrum Emulator
- Copyright (c) 1999-2005 Philip Kendall
+ Copyright (c) 1999-2007 Philip Kendall
- $Id: fuse.c,v 1.133.2.1 2007/02/17 17:12:29 pak21 Exp $
+ $Id: fuse.c,v 1.133.2.3 2007/04/11 09:39:32 pak21 Exp $
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
@@ -272,7 +272,6 @@
size_t i;
unsigned int version[4] = { 0, 0, 0, 0 };
char *custom;
- char *name = "Fuse";
#ifndef WIN32
struct utsname buf;
@@ -308,9 +307,7 @@
error = libspectrum_creator_alloc( &fuse_creator ); if( error ) return error;
- error = libspectrum_creator_set_program(
- fuse_creator, name
- );
+ error = libspectrum_creator_set_program( fuse_creator, "Fuse" );
if( error ) { libspectrum_creator_free( fuse_creator ); return error; }
error = libspectrum_creator_set_major( fuse_creator,
@@ -370,7 +367,7 @@
printf( "\n" );
fuse_show_version();
printf(
- "Copyright (c) 1999-2005 Philip Kendall <phi...@sh...>\n"
+ "Copyright (c) 1999-2007 Philip Kendall <phi...@sh...>\n"
"and others; see the file 'AUTHORS' for more details.\n"
"\n"
"This program is distributed in the hope that it will be useful,\n"
Modified: branches/Release-0_8_0/fuse/fusepb/English.lproj/InfoPlist.strings
===================================================================
(Binary files differ)
Modified: branches/Release-0_8_0/fuse/fusepb/Info-Fuse.plist
===================================================================
--- branches/Release-0_8_0/fuse/fusepb/Info-Fuse.plist 2007-04-11 12:33:42 UTC (rev 352)
+++ branches/Release-0_8_0/fuse/fusepb/Info-Fuse.plist 2007-04-11 12:59:00 UTC (rev 353)
@@ -361,11 +361,11 @@
<key>CFBundlePackageType</key>
<string>APPL</string>
<key>CFBundleShortVersionString</key>
- <string>20070404</string>
+ <string>0.8.0</string>
<key>CFBundleSignature</key>
<string>FUSE</string>
<key>CFBundleVersion</key>
- <string>20070404</string>
+ <string>0.8.0</string>
<key>NSMainNibFile</key>
<string>SDLMain</string>
<key>NSPrincipalClass</key>
Modified: branches/Release-0_8_0/fuse/fusepb/config.h
===================================================================
--- branches/Release-0_8_0/fuse/fusepb/config.h 2007-04-11 12:33:42 UTC (rev 352)
+++ branches/Release-0_8_0/fuse/fusepb/config.h 2007-04-11 12:59:00 UTC (rev 353)
@@ -169,7 +169,7 @@
#define STDC_HEADERS 1
/* Version number of package */
-#define VERSION "0.7.0"
+#define VERSION "0.8.0"
/* Define to 1 if your processor stores words with the most significant byte
first (like Motorola and SPARC, unlike Intel and VAX). */
Modified: branches/Release-0_8_0/fuse/fusepb/controllers/FuseController.m
===================================================================
--- branches/Release-0_8_0/fuse/fusepb/controllers/FuseController.m 2007-04-11 12:33:42 UTC (rev 352)
+++ branches/Release-0_8_0/fuse/fusepb/controllers/FuseController.m 2007-04-11 12:59:00 UTC (rev 353)
@@ -524,7 +524,6 @@
- (IBAction)rzx_rollback:(id)sender
{
- libspectrum_snap *snap;
libspectrum_error error;
if( !rzx_recording ) return;
Modified: branches/Release-0_8_0/fuse/hacking/ChangeLog
===================================================================
--- branches/Release-0_8_0/fuse/hacking/ChangeLog 2007-04-11 12:33:42 UTC (rev 352)
+++ branches/Release-0_8_0/fuse/hacking/ChangeLog 2007-04-11 12:59:00 UTC (rev 353)
@@ -1574,3 +1574,12 @@
(thanks, Julian Wiseman) (Fred).
20070404 printer.c: don't buffer output so text is available as it is
printed (Release-0_8_0-branch) (Fred).
+20070409 ChangeLog,README,configure.in,man/fuse.1: updates for 0.8 release
+ (Release-0_8_0-branch).
+20070409 rzx.c: change over to the 'release' DSA key (Release-0_8_0-branch).
+20070409 fuse.c: remove warning (Release-0_8_0-branch).
+20070410 rzx.c: don't allow use of rollback commands during playback (thanks,
+ Julian Wiseman) (Release-0_8_0-branch).
+20070411 README: these aren't all IDE interfaces (Release-0_8_0-branch).
+20070411 fuse.c: update copyright date to 2007 (Release-0_8_0-branch).
+20070411 TAG: Release-0_8_0 (Release-0_8_0-branch).
Modified: branches/Release-0_8_0/fuse/hacking/cvs-tags
===================================================================
--- branches/Release-0_8_0/fuse/hacking/cvs-tags 2007-04-11 12:33:42 UTC (rev 352)
+++ branches/Release-0_8_0/fuse/hacking/cvs-tags 2007-04-11 12:59:00 UTC (rev 353)
@@ -1,6 +1,6 @@
CVS tags for Fuse
-$Id: cvs-tags,v 1.32.2.1 2007/03/03 21:49:10 pak21 Exp $
+$Id: cvs-tags,v 1.32.2.2 2007/04/11 09:41:31 pak21 Exp $
| Release-0_3_1
| Release-0_3_2pre1
@@ -146,6 +146,7 @@
+-\
| | Release-0_8_0-pre1
| | Release-0_8_0-pre2
+| | Release-0_8_0
| |
| | Release-0_8_0-branch
|
Modified: branches/Release-0_8_0/fuse/man/fuse.1
===================================================================
--- branches/Release-0_8_0/fuse/man/fuse.1 2007-04-11 12:33:42 UTC (rev 352)
+++ branches/Release-0_8_0/fuse/man/fuse.1 2007-04-11 12:59:00 UTC (rev 353)
@@ -23,7 +23,7 @@
.\" E-mail: phi...@sh...
.\"
.\"
-.TH fuse 1 "16th July, 2004" "Version 0.7.0" "Emulators"
+.TH fuse 1 "11th April, 2007" "Version 0.8.0" "Emulators"
.\"
.\"------------------------------------------------------------------
.\"
Modified: branches/Release-0_8_0/fuse/rzx.c
===================================================================
--- branches/Release-0_8_0/fuse/rzx.c 2007-04-11 12:33:42 UTC (rev 352)
+++ branches/Release-0_8_0/fuse/rzx.c 2007-04-11 12:59:00 UTC (rev 353)
@@ -1,7 +1,7 @@
/* rzx.c: .rzx files
Copyright (c) 2002-2003 Philip Kendall
- $Id: rzx.c,v 1.70.2.3 2007/02/09 08:21:33 pak21 Exp $
+ $Id: rzx.c,v 1.70.2.5 2007/04/10 08:29:51 pak21 Exp $
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
@@ -79,11 +79,11 @@
/* Fuse's DSA key */
libspectrum_rzx_dsa_key rzx_key = {
- "9E140C4CEA9CA011AA8AD17443CB5DC18DC634908474992D38AB7D4A27038CBB209420BA2CAB8508CED35ADF8CBD31A0A034FC082A168A0E190FFC4CCD21706F", /* p */
- "C52E9CA1804BD021FFAD30E8FB89A94437C2E4CB", /* q */
- "90E56D9493DE80E1A35F922007357888A1A47805FD365AD27BC5F184601EBC74E44F576AA4BF8C5244D202BBAE697C4F9132DFB7AD0A56892A414C96756BD21A", /* g */
- "7810A35AC94EA5750934FB9C922351EE597C71E2B83913C121C6655EA25CE7CBE2C259FA3168F8475B2510AA29C5FEB50ACAB25F34366C2FFC93B3870A522232", /* y */
- "9A4E53CC249750C3194A38A3BE3EDEED28B171A9" /* x */
+ "A9E3BD74E136A9ABD41E614383BB1B01EB24B2CD7B920ED6A62F786A879AC8B00F2FF318BF96F81654214B1A064889FF6D8078858ED00CF61D2047B2AAB7888949F35D166A2BBAAE23A331BD4728A736E76901D74B195B68C4A2BBFB9F005E3655BDE8256C279A626E00C7087A2D575F78D7DC5CA6E392A535FFE47A816BA503", /* p */
+ "FE8D540EED2CAE1983690E2886259F8956FB5A19", /* q */
+ "9680ABFFB98EF2021945ADDF86C21D6EE3F7C8777FB0A0220AB59E9DFA3A3338611B32CFD1F22F8F26547858754ED93BFBDD87DC13C09F42B42A36B2024467D98EB754DEB2847FCA7FC60C81A99CF95133847EA38AD9D037AFE9DD189E9F0EE47624848CEE840D7E3724A39681E71B97ECF777383DC52A48C0A2C93BADA93F4C", /* g */
+ "46605F0514D56BC0B4207A350367A5038DBDD4DD62B7C997D26D0ADC5BE42D01F852C199E34553BCBCE5955FF80E3B402B55316606D7E39C0F500AE5EE41A7B7A4DCE78EC19072C21FCC7BA48DFDC830C17B72BCAA2B2D70D9DFC0AAD9B7E73F7AEB6241E54D55C33E41AB749CAAFBE7AB00F2D74C500E5F5DD63BD299C65778", /* y */
+ "948744AA7A1D1BE9EE65150B0A95A678B4181F0E" /* x */
};
/* By how much is the speed allowed to deviate from 100% whilst recording
@@ -288,7 +288,7 @@
counter_reset();
ui_menu_activate( UI_MENU_ITEM_RECORDING, 1 );
- ui_menu_activate( UI_MENU_ITEM_RECORDING_ROLLBACK, 1 );
+ ui_menu_activate( UI_MENU_ITEM_RECORDING_ROLLBACK, 0 );
return 0;
}
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|