Changes since version 0.22: - Moved over some features from WinUAE: * better m68k exception handling * better m68k prefetch emulation * better debugger - More merging with WinUAE; a lot of the input device code has changed - GUI cleaned up. - Quest to eliminate useless options continues: 68000 mode is always "slow but compatible"; it's not that slow after all. - Now uses GTK2 for the GUI. - Added ALSA sound support from Heikki Orsila
21 lines
543 B
Text
21 lines
543 B
Text
$NetBSD: patch-ab,v 1.5 2005/10/14 22:15:49 kristerw Exp $
|
|
|
|
--- src/disk.c.orig 2005-08-12 20:48:07.000000000 +0200
|
|
+++ src/disk.c 2005-08-12 20:48:56.000000000 +0200
|
|
@@ -1178,6 +1178,8 @@
|
|
also it seems some copy protections require this fix */
|
|
DISK_start ();
|
|
|
|
+ /* The following fails with some versions of Kickstart. Disable it. */
|
|
+#if 0
|
|
/* Try to make floppy access from Kickstart faster. */
|
|
if (dskdmaen != 2)
|
|
return;
|
|
@@ -1222,6 +1224,7 @@
|
|
}
|
|
}
|
|
}
|
|
+#endif
|
|
}
|
|
|
|
/* not a real hardware register */
|