Updated UAE to version 0.8.14.

User-visible changes in 0.8.14:
  - More bug fixes:
    * CPU emulation problem that could have caused copy protection schemes to
      malfunction has been fixed.
    * Some AGA problems fixed (one of them visible in ECS modes).
    * UAE should work again on non-x86 systems.
  - By default the emulator will try to approximate an A500 in CPU speed.
    This setting existed before, but it's a bit more accurate now and on by
    default.
  - There is a new option to control the number of emulated disk drives.
  - Software autofire for the keyboard joystick replacements
This commit is contained in:
kristerw 2000-08-26 19:25:38 +00:00
parent 1bf5934191
commit eae335e8e1
4 changed files with 9 additions and 20 deletions

View file

@ -1,6 +1,6 @@
# $NetBSD: Makefile,v 1.8 2000/07/28 19:27:58 kristerw Exp $
# $NetBSD: Makefile,v 1.9 2000/08/26 19:25:38 kristerw Exp $
DISTNAME= uae-0.8.13
DISTNAME= uae-0.8.14
CATEGORIES= emulators
MASTER_SITES= ftp://ftp.freiburg.linux.de/pub/uae/sources/develop/
@ -17,9 +17,6 @@ CONFIGURE_ARGS+= --enable-dga --enable-vidmode \
--with-gtk-prefix=${WRKDIR}
CONFIGURE_ENV+= CPPFLAGS="${CPPFLAGS}"
post-configure:
(cd ${WRKSRC}/src; ${MAKE} .SECONDARY)
do-install:
.for FILE in readdisk uae
${INSTALL_PROGRAM} ${WRKSRC}/${FILE} ${PREFIX}/bin

View file

@ -1,3 +1,3 @@
$NetBSD: md5,v 1.3 2000/07/24 20:10:11 martin Exp $
$NetBSD: md5,v 1.4 2000/08/26 19:25:38 kristerw Exp $
MD5 (uae-0.8.13.tar.gz) = efcac84d7d79b1ecf8a257cb63611600
MD5 (uae-0.8.14.tar.gz) = ddb671d8261fd6db8cc529dbdcc8e6fb

View file

@ -1,3 +1,6 @@
$NetBSD: patch-sum,v 1.3 2000/07/28 19:27:59 kristerw Exp $
$NetBSD: patch-sum,v 1.4 2000/08/26 19:25:38 kristerw Exp $
MD5 (patch-aa) = 2f118b83535a31e85bb59bd163a88a31
This placeholder file is generated by the ``makepatchsum'' target
whenever the patches directory is empty or missing. Its purpose
is to ensure that the presence of any obsolete patches will cause
the proper error to be emitted at build time.

View file

@ -1,11 +0,0 @@
--- src/newcpu.c.orig Fri Jul 28 19:09:30 2000
+++ src/newcpu.c Fri Jul 28 19:10:03 2000
@@ -1323,7 +1323,7 @@
: : "r" (func) : "%eax", "%edx", "%ecx", "memory", "cc");
}
#else
-#define m68k_run1(F) F
+#define m68k_run1(F) (F)()
#endif
int in_m68k_go = 0;