FreeBSD Bugzilla – Attachment 233830 Details for
Bug 252362
emulators/mame: upgrade to 0.249
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
Remember
[x]
|
Forgot Password
Login:
[x]
[patch]
mame-0.243.patch
mame-0.243.patch (text/plain), 21.16 KB, created by
Alastair Hogge
on 2022-05-10 06:39:03 UTC
(
hide
)
Description:
mame-0.243.patch
Filename:
MIME Type:
Creator:
Alastair Hogge
Created:
2022-05-10 06:39:03 UTC
Size:
21.16 KB
patch
obsolete
>diff --git a/emulators/mame/Makefile b/emulators/mame/Makefile >index 60bf7c773f79..5e5f66cba3dd 100644 >--- a/emulators/mame/Makefile >+++ b/emulators/mame/Makefile >@@ -1,8 +1,7 @@ > # Created by: alepulver > > PORTNAME?= mame >-PORTVERSION= 0.226 >-PORTREVISION= 1 >+PORTVERSION= 0.243 > CATEGORIES= emulators > > MAINTAINER= manu@FreeBSD.org >@@ -21,7 +20,7 @@ LIB_DEPENDS= libFLAC.so:audio/flac \ > RUN_DEPENDS= liberation-fonts-ttf>=0:x11-fonts/liberation-fonts-ttf > > USES= compiler:c++14-lang gl gmake jpeg localbase pkgconfig \ >- python:3.7,build qt:5 sdl shebangfix xorg >+ python:3.7,build qt:5 sdl shebangfix sqlite:3 xorg > > USE_GITHUB= yes > GH_ACCOUNT= mamedev >@@ -32,17 +31,20 @@ USE_QT= buildtools core gui qmake_build widgets > USE_SDL= sdl2 ttf2 > USE_XORG= x11 xext xi xinerama xrender > >-SHEBANG_FILES= src/devices/cpu/m6502/m6502make.py \ >+SHEBANG_FILES= src/devices/cpu/h8/h8make.py \ >+ src/devices/cpu/m6502/m6502make.py \ >+ src/devices/cpu/m68000/m68kmake.py \ > src/devices/cpu/m6809/m6809make.py \ > src/devices/cpu/mcs96/mcs96make.py \ > src/devices/cpu/tms57002/tmsmake.py > > MAKEFILE= makefile >-MAKE_ARGS= TARGETOS=freebsd VERBOSE=1 TOOLS=1 USE_SYSTEM_LIB_PUGIXML=1 >-MAKE_ENV= NOWERROR=1 USE_NETWORK=1 \ >- LD="${CXX}" PYTHON="${PYTHON_CMD}" \ >- OPT_FLAGS="${CXXFLAGS}" GCC_LDFLAGS="${LDFLAGS}" \ >- TARGET="${MTARGET}" SUBTARGET="${MSUBTARGET}" FULLNAME="mame" SDL_NETWORK="pcap" >+MAKE_ARGS= TARGETOS=freebsd VERBOSE=1 TOOLS=1 USE_SYSTEM_LIB_PUGIXML=1 \ >+ USE_SYSTEM_LIB_SQLITE3=1 >+MAKE_ENV= FULLNAME="mame" GCC_LDFLAGS="${LDFLAGS}" LD="${CXX}" \ >+ NOWERROR=1 OPT_FLAGS="${CXXFLAGS}" PYTHON="${PYTHON_CMD}" \ >+ PYTHON_EXECUTABLE="${PYTHON_CMD}" SDL_NETWORK="pcap" \ >+ SUBTARGET="${MSUBTARGET}" TARGET="${MTARGET}" USE_NETWORK=1 > MAKE_JOBS_UNSAFE= yes > > SUB_FILES= pkg-message target.ini >@@ -63,10 +65,8 @@ MTARGET?= mame > > .if ${ARCH} == amd64 || ${ARCH:Mpowerpc64*} > MAKE_ARGS+= PTR64=1 >-EMULATOR= ${MSUBTARGET}64 >-.else >-EMULATOR= ${MSUBTARGET} > .endif >+EMULATOR= ${MSUBTARGET} > PLIST_SUB+= EMULATOR=${EMULATOR} > > post-patch: >@@ -92,8 +92,10 @@ post-patch: > ${GENIE}/src/host/scripts.c > # we can't fix two types of python shebangs, so do these manually > @${REINPLACE_CMD} -i "" -e "s|/usr/bin/env python|${PYTHON_CMD}|" \ >- ${WRKSRC}/scripts/build/png*.py >- @${REINPLACE_CMD} -e 's|"python"|"${PYTHON_CMD}"|' \ >+ ${WRKSRC}/scripts/build/*.py >+ @${REINPLACE_CMD} -i "" -e "s|/usr/bin/python|${PYTHON_CMD}|" \ >+ ${WRKSRC}/scripts/build/*.py >+ @${REINPLACE_CMD} -e 's|"python3"|"${PYTHON_CMD}"|' \ > ${WRKSRC}/scripts/genie.lua > @${GREP} -rl '"png.h"' ${WRKSRC}/src | ${XARGS} ${REINPLACE_CMD} \ > -e 's|"png.h"|"localpng.h"|' >diff --git a/emulators/mame/distinfo b/emulators/mame/distinfo >index 24c58db83691..dbeb371c1630 100644 >--- a/emulators/mame/distinfo >+++ b/emulators/mame/distinfo >@@ -1,3 +1,3 @@ >-TIMESTAMP = 1608936229 >-SHA256 (mamedev-mame-0.226-mame0226_GH0.tar.gz) = 7c4c9ec232ba988e65fd29665c9b8e40b5ac3aa9f561eeb107cebbf08ba94baf >-SIZE (mamedev-mame-0.226-mame0226_GH0.tar.gz) = 196379874 >+TIMESTAMP = 1651290926 >+SHA256 (mamedev-mame-0.243-mame0243_GH0.tar.gz) = 8cddb7d6cee5d736d1ce7ef2022e2d09b5c61bea02b5df7e369010a47a5d2133 >+SIZE (mamedev-mame-0.243-mame0243_GH0.tar.gz) = 185402979 >diff --git a/emulators/mame/files/patch-src_osd_eminline.h b/emulators/mame/files/patch-src_osd_eminline.h >index ca0f71526adf..db643c2cb67a 100644 >--- a/emulators/mame/files/patch-src_osd_eminline.h >+++ b/emulators/mame/files/patch-src_osd_eminline.h >@@ -1,4 +1,4 @@ >---- src/osd/eminline.h.orig 2018-02-27 15:59:06 UTC >+--- src/osd/eminline.h.orig 2022-04-29 05:37:26 UTC > +++ src/osd/eminline.h > @@ -21,7 +21,7 @@ > >diff --git a/emulators/mame/files/patch-src_osd_sdl_sdlprefix.h b/emulators/mame/files/patch-src_osd_sdl_sdlprefix.h >index 1dce6ab01d76..aef78617bc07 100644 >--- a/emulators/mame/files/patch-src_osd_sdl_sdlprefix.h >+++ b/emulators/mame/files/patch-src_osd_sdl_sdlprefix.h >@@ -1,7 +1,10 @@ >---- src/osd/sdl/sdlprefix.h.orig 2018-02-27 15:59:06 UTC >+--- src/osd/sdl/sdlprefix.h.orig 2022-04-29 05:37:26 UTC > +++ src/osd/sdl/sdlprefix.h >-@@ -48,6 +48,7 @@ >- #define NO_AFFINITY_NP 1 >+@@ -45,9 +45,9 @@ >+ >+ #elif defined(__FreeBSD__) >+ #define SDLMAME_FREEBSD 1 >+-#define NO_AFFINITY_NP 1 > #elif defined(__DragonFly__) > #define SDLMAME_DRAGONFLY 1 > +#define NO_AFFINITY_NP 1 >diff --git a/emulators/mame/files/pkg-message.in b/emulators/mame/files/pkg-message.in >index 3d2ee477ee42..3893efdb33bb 100644 >--- a/emulators/mame/files/pkg-message.in >+++ b/emulators/mame/files/pkg-message.in >@@ -2,9 +2,12 @@ > { type: install > message: <<EOM > An example configuration file has been installed in >-"%%EXAMPLESDIR%%/%%MTARGET%%.ini" >-Should you create a "~/.%%MTARGET%%" directory and place it here or >-launch "%%MTARGET%% -createconfig" and place the %%MTARGET%%.ini created instead. >+"%%EXAMPLESDIR%%/%%MTARGET%%.ini" This configuration can be copied to your >+"~/.%%MTARGET%%" directory; alternatively, run "%%MTARGET%% -createconfig" to >+create a clean copy of "%%MTARGET%%.ini", which can be copied to >+"~/.%%MTARGET%%", or eleswhere. >+Run "%%MTARGET%% -inipath path-to-%%MTARGET%%.ini" to launch MAME with a custom >+configuration path. > EOM > } > ] >diff --git a/emulators/mame/pkg-descr b/emulators/mame/pkg-descr >index a8907f9e4cf7..d1ad329e7b42 100644 >--- a/emulators/mame/pkg-descr >+++ b/emulators/mame/pkg-descr >@@ -1,8 +1,7 @@ >-MAME stands for Multiple Arcade Machine Emulator. When used in >-conjunction with images of the original arcade game's ROM and disk >-data, MAME attempts to reproduce that game as faithfully as possible >-on a more modern general-purpose computer. MAME can currently emulate >-several thousand different classic arcade video games from the late >-1970s through the modern era. >+MAME is a multi-purpose emulation framework, with the aim of documenting and >+preserving vintage software and hardware from becoming lost. When used with >+vintage firmware (or BIOS), and duplicated Read Only Memory (ROMs), on modern >+hardware, users are able to play and explore systems and games from â1970 >+through to the modern era. > >-WWW: http://mamedev.org/ >+WWW: https://mamedev.org/ >diff --git a/emulators/mame/pkg-plist b/emulators/mame/pkg-plist >index f20f1a21480d..50cc698ed635 100644 >--- a/emulators/mame/pkg-plist >+++ b/emulators/mame/pkg-plist >@@ -1,10 +1,12 @@ > bin/%%EMULATOR%% >-libexec/mame/chdman >-libexec/mame/jedutil >-libexec/mame/ldresample >-libexec/mame/ldverify >-libexec/mame/romcmp >-libexec/mame/unidasm >+libexec/%%EMULATOR%%/chdman >+libexec/%%EMULATOR%%/jedutil >+libexec/%%EMULATOR%%/ldresample >+libexec/%%EMULATOR%%/ldverify >+libexec/%%EMULATOR%%/romcmp >+libexec/%%EMULATOR%%/unidasm >+%%DATADIR%%/artwork/LICENSE >+%%DATADIR%%/artwork/README.md > %%DATADIR%%/artwork/aperture-grille.png > %%DATADIR%%/artwork/aperture.png > %%DATADIR%%/artwork/aperture1x2rb.png >@@ -13,6 +15,7 @@ libexec/mame/unidasm > %%DATADIR%%/artwork/aperture2x4rb.png > %%DATADIR%%/artwork/aperture4x6.png > %%DATADIR%%/artwork/bgfx/border_blur/default.lay >+%%DATADIR%%/artwork/bgfx/chains/crt-geom/add_alpha.py > %%DATADIR%%/artwork/bgfx/chains/crt-geom/aperture_1_2_bgr.png > %%DATADIR%%/artwork/bgfx/chains/crt-geom/aperture_1_4_rgb.png > %%DATADIR%%/artwork/bgfx/chains/crt-geom/aperture_2_4_rgb.png >@@ -29,24 +32,23 @@ libexec/mame/unidasm > %%DATADIR%%/artwork/bgfx/chains/hq2x.png > %%DATADIR%%/artwork/bgfx/chains/hq3x.png > %%DATADIR%%/artwork/bgfx/chains/hq4x.png >-%%DATADIR%%/artwork/chess/bb.png >-%%DATADIR%%/artwork/chess/bk.png >-%%DATADIR%%/artwork/chess/bn.png >-%%DATADIR%%/artwork/chess/bp.png >-%%DATADIR%%/artwork/chess/bq.png >-%%DATADIR%%/artwork/chess/br.png > %%DATADIR%%/artwork/chess/README.md >-%%DATADIR%%/artwork/chess/wb.png >-%%DATADIR%%/artwork/chess/wk.png >-%%DATADIR%%/artwork/chess/wn.png >-%%DATADIR%%/artwork/chess/wp.png >-%%DATADIR%%/artwork/chess/wq.png >-%%DATADIR%%/artwork/chess/wr.png >+%%DATADIR%%/artwork/chess/bb.svg >+%%DATADIR%%/artwork/chess/bk.svg >+%%DATADIR%%/artwork/chess/bn.svg >+%%DATADIR%%/artwork/chess/bp.svg >+%%DATADIR%%/artwork/chess/bq.svg >+%%DATADIR%%/artwork/chess/br.svg >+%%DATADIR%%/artwork/chess/wb.svg >+%%DATADIR%%/artwork/chess/wk.svg >+%%DATADIR%%/artwork/chess/wn.svg >+%%DATADIR%%/artwork/chess/wp.svg >+%%DATADIR%%/artwork/chess/wq.svg >+%%DATADIR%%/artwork/chess/wr.svg > %%DATADIR%%/artwork/dir.txt >-%%DATADIR%%/artwork/LICENSE >+%%DATADIR%%/artwork/lut-default.png > %%DATADIR%%/artwork/monochrome-chessboard.png > %%DATADIR%%/artwork/monochrome-matrix.png >-%%DATADIR%%/artwork/README.md > %%DATADIR%%/artwork/scanlines.png > %%DATADIR%%/artwork/shadow-mask.png > %%DATADIR%%/artwork/slot-mask-aligned.png >@@ -54,20 +56,21 @@ libexec/mame/unidasm > %%DATADIR%%/artwork/white.png > %%DATADIR%%/hash/32x.xml > %%DATADIR%%/hash/3do_m2.xml >-%%DATADIR%%/hash/a2600_cass.xml >+%%DATADIR%%/hash/README.md > %%DATADIR%%/hash/a2600.xml >+%%DATADIR%%/hash/a2600_cass.xml > %%DATADIR%%/hash/a5200.hsi > %%DATADIR%%/hash/a5200.xml > %%DATADIR%%/hash/a7800.xml >+%%DATADIR%%/hash/a800.xml > %%DATADIR%%/hash/a800_cass.xml > %%DATADIR%%/hash/a800_flop.xml >-%%DATADIR%%/hash/a800.xml >-%%DATADIR%%/hash/abc1600.xml >-%%DATADIR%%/hash/abc80_cass.xml >-%%DATADIR%%/hash/abc80_flop.xml >-%%DATADIR%%/hash/abc800_hdd.xml >+%%DATADIR%%/hash/abc1600_flop.xml > %%DATADIR%%/hash/abc800.xml >+%%DATADIR%%/hash/abc800_hdd.xml > %%DATADIR%%/hash/abc806.xml >+%%DATADIR%%/hash/abc80_cass.xml >+%%DATADIR%%/hash/abc80_flop.xml > %%DATADIR%%/hash/acrnsys_flop.xml > %%DATADIR%%/hash/acrnsys_rom.xml > %%DATADIR%%/hash/adam_cart.xml >@@ -79,6 +82,7 @@ libexec/mame/unidasm > %%DATADIR%%/hash/aleste.xml > %%DATADIR%%/hash/alice32.xml > %%DATADIR%%/hash/alice90.xml >+%%DATADIR%%/hash/alphasmart_kapps.xml > %%DATADIR%%/hash/alphatro_cart.xml > %%DATADIR%%/hash/alphatro_flop.xml > %%DATADIR%%/hash/altos5.xml >@@ -86,14 +90,17 @@ libexec/mame/unidasm > %%DATADIR%%/hash/amiga_a1000.xml > %%DATADIR%%/hash/amiga_a3000.xml > %%DATADIR%%/hash/amiga_apps.xml >+%%DATADIR%%/hash/amiga_demos.xml > %%DATADIR%%/hash/amiga_flop.xml > %%DATADIR%%/hash/amiga_hardware.xml >+%%DATADIR%%/hash/amiga_hdd.xml > %%DATADIR%%/hash/amiga_workbench.xml > %%DATADIR%%/hash/amigaaga_flop.xml > %%DATADIR%%/hash/amigaecs_flop.xml > %%DATADIR%%/hash/amigaocs_flop.xml > %%DATADIR%%/hash/ampro.xml > %%DATADIR%%/hash/apc.xml >+%%DATADIR%%/hash/apexc_cyl.xml > %%DATADIR%%/hash/apfimag_cass.xml > %%DATADIR%%/hash/apfm1000.xml > %%DATADIR%%/hash/apogee.xml >@@ -103,15 +110,20 @@ libexec/mame/unidasm > %%DATADIR%%/hash/apple2_flop_clcracked.xml > %%DATADIR%%/hash/apple2_flop_misc.xml > %%DATADIR%%/hash/apple2_flop_orig.xml >-%%DATADIR%%/hash/apple2gs.xml >+%%DATADIR%%/hash/apple2gs_flop_clcracked.xml >+%%DATADIR%%/hash/apple2gs_flop_misc.xml >+%%DATADIR%%/hash/apple2gs_flop_orig.xml > %%DATADIR%%/hash/apple3.xml > %%DATADIR%%/hash/applix_flop.xml > %%DATADIR%%/hash/apricot_flop.xml >+%%DATADIR%%/hash/apxen_flop.xml > %%DATADIR%%/hash/aquarius_cart.xml > %%DATADIR%%/hash/aquarius_cass.xml > %%DATADIR%%/hash/arb.xml > %%DATADIR%%/hash/arcadia.xml > %%DATADIR%%/hash/archimedes.xml >+%%DATADIR%%/hash/archimedes_hdd.xml >+%%DATADIR%%/hash/archimedes_rom.xml > %%DATADIR%%/hash/astrocde.xml > %%DATADIR%%/hash/atom_cass.xml > %%DATADIR%%/hash/atom_flop.xml >@@ -119,6 +131,7 @@ libexec/mame/unidasm > %%DATADIR%%/hash/attache.xml > %%DATADIR%%/hash/aussiebyte.xml > %%DATADIR%%/hash/b2m.xml >+%%DATADIR%%/hash/basf7100.xml > %%DATADIR%%/hash/bbc_cass.xml > %%DATADIR%%/hash/bbc_flop_32016.xml > %%DATADIR%%/hash/bbc_flop_6502.xml >@@ -130,9 +143,9 @@ libexec/mame/unidasm > %%DATADIR%%/hash/bbc_flop_z80.xml > %%DATADIR%%/hash/bbc_hdd.xml > %%DATADIR%%/hash/bbc_rom.xml >+%%DATADIR%%/hash/bbcb_flop.xml > %%DATADIR%%/hash/bbcb_flop_orig.xml > %%DATADIR%%/hash/bbcb_flop_us.xml >-%%DATADIR%%/hash/bbcb_flop.xml > %%DATADIR%%/hash/bbcbc.xml > %%DATADIR%%/hash/bbcm_cart.xml > %%DATADIR%%/hash/bbcm_flop.xml >@@ -173,6 +186,7 @@ libexec/mame/unidasm > %%DATADIR%%/hash/cgenie_flop_rom.xml > %%DATADIR%%/hash/channelf.xml > %%DATADIR%%/hash/chessmstdm.xml >+%%DATADIR%%/hash/chip8_quik.xml > %%DATADIR%%/hash/clickstart_cart.xml > %%DATADIR%%/hash/clipper_flop.xml > %%DATADIR%%/hash/coco_cart.xml >@@ -193,6 +207,7 @@ libexec/mame/unidasm > %%DATADIR%%/hash/dc.xml > %%DATADIR%%/hash/dgnalpha_flop.xml > %%DATADIR%%/hash/dgnbeta_flop.xml >+%%DATADIR%%/hash/digilog320.xml > %%DATADIR%%/hash/dim68k.xml > %%DATADIR%%/hash/dmv.xml > %%DATADIR%%/hash/dps1.xml >@@ -202,8 +217,10 @@ libexec/mame/unidasm > %%DATADIR%%/hash/dragon_flop.xml > %%DATADIR%%/hash/dragon_os9.xml > %%DATADIR%%/hash/e01_flop.xml >+%%DATADIR%%/hash/easy_karaoke_cart.xml > %%DATADIR%%/hash/ec1841.xml > %%DATADIR%%/hash/einstein.xml >+%%DATADIR%%/hash/ekara_japan.xml > %%DATADIR%%/hash/ekara_japan_a.xml > %%DATADIR%%/hash/ekara_japan_ac.xml > %%DATADIR%%/hash/ekara_japan_bh.xml >@@ -216,7 +233,6 @@ libexec/mame/unidasm > %%DATADIR%%/hash/ekara_japan_s.xml > %%DATADIR%%/hash/ekara_japan_sp.xml > %%DATADIR%%/hash/ekara_japan_web.xml >-%%DATADIR%%/hash/ekara_japan.xml > %%DATADIR%%/hash/ekara_pal.xml > %%DATADIR%%/hash/ekara_us.xml > %%DATADIR%%/hash/electron_cart.xml >@@ -233,16 +249,20 @@ libexec/mame/unidasm > %%DATADIR%%/hash/ews286_flop.xml > %%DATADIR%%/hash/excalibur64.xml > %%DATADIR%%/hash/exl100.xml >+%%DATADIR%%/hash/famibox.xml > %%DATADIR%%/hash/famicom_cass.xml > %%DATADIR%%/hash/famicom_flop.xml > %%DATADIR%%/hash/fidel_msc.xml > %%DATADIR%%/hash/fidel_sc6.xml > %%DATADIR%%/hash/fidel_scc.xml >+%%DATADIR%%/hash/fm77av.xml > %%DATADIR%%/hash/fm7_cass.xml > %%DATADIR%%/hash/fm7_disk.xml >-%%DATADIR%%/hash/fm77av.xml >+%%DATADIR%%/hash/fm8_cass.xml > %%DATADIR%%/hash/fmtowns_cd.xml >-%%DATADIR%%/hash/fmtowns_flop.xml >+%%DATADIR%%/hash/fmtowns_flop_cracked.xml >+%%DATADIR%%/hash/fmtowns_flop_misc.xml >+%%DATADIR%%/hash/fmtowns_flop_orig.xml > %%DATADIR%%/hash/galaxy.xml > %%DATADIR%%/hash/gamate.xml > %%DATADIR%%/hash/gameboy.xml >@@ -251,8 +271,8 @@ libexec/mame/unidasm > %%DATADIR%%/hash/gameking.xml > %%DATADIR%%/hash/gameking3.xml > %%DATADIR%%/hash/gamepock.xml >-%%DATADIR%%/hash/gba_ereader.xml > %%DATADIR%%/hash/gba.xml >+%%DATADIR%%/hash/gba_ereader.xml > %%DATADIR%%/hash/gbcolor.xml > %%DATADIR%%/hash/gcslottv.xml > %%DATADIR%%/hash/ggm.xml >@@ -273,7 +293,6 @@ libexec/mame/unidasm > %%DATADIR%%/hash/gx4000.xml > %%DATADIR%%/hash/h21.xml > %%DATADIR%%/hash/horizon.xml >-%%DATADIR%%/hash/hp_ipc.xml > %%DATADIR%%/hash/hp85_rom.xml > %%DATADIR%%/hash/hp86_rom.xml > %%DATADIR%%/hash/hp9825b_rom.xml >@@ -283,18 +302,20 @@ libexec/mame/unidasm > %%DATADIR%%/hash/hp9k3xx_cdrom.xml > %%DATADIR%%/hash/hp9k3xx_flop.xml > %%DATADIR%%/hash/hp9k3xx_hdd.xml >+%%DATADIR%%/hash/hp_ipc.xml >+%%DATADIR%%/hash/hp_ipc_rom.xml > %%DATADIR%%/hash/ht68k.xml > %%DATADIR%%/hash/hx20_rom.xml >-%%DATADIR%%/hash/hyperscan_card.xml > %%DATADIR%%/hash/hyperscan.xml >+%%DATADIR%%/hash/hyperscan_card.xml > %%DATADIR%%/hash/i7000_card.xml > %%DATADIR%%/hash/ibm5140.xml >+%%DATADIR%%/hash/ibm5150.xml > %%DATADIR%%/hash/ibm5150_cass.xml > %%DATADIR%%/hash/ibm5150_hdd.xml >-%%DATADIR%%/hash/ibm5150.xml >+%%DATADIR%%/hash/ibm5170.xml > %%DATADIR%%/hash/ibm5170_cdrom.xml > %%DATADIR%%/hash/ibm5170_hdd.xml >-%%DATADIR%%/hash/ibm5170.xml > %%DATADIR%%/hash/ibm6580.xml > %%DATADIR%%/hash/ibmpcjr_cart.xml > %%DATADIR%%/hash/ibmpcjr_flop.xml >@@ -337,12 +358,16 @@ libexec/mame/unidasm > %%DATADIR%%/hash/laser2001_cart.xml > %%DATADIR%%/hash/laser2001_flop.xml > %%DATADIR%%/hash/leapfrog_didj_cart.xml >+%%DATADIR%%/hash/leapfrog_iquest_cart.xml > %%DATADIR%%/hash/leapfrog_leappad_cart.xml > %%DATADIR%%/hash/leapfrog_ltleappad_cart.xml > %%DATADIR%%/hash/leapfrog_mfleappad_cart.xml >+%%DATADIR%%/hash/leapfrog_zippity_cart.xml > %%DATADIR%%/hash/leapster.xml >+%%DATADIR%%/hash/leapster_explorer_cart.xml > %%DATADIR%%/hash/lisa.xml > %%DATADIR%%/hash/lisa2.xml >+%%DATADIR%%/hash/lk3000.xml > %%DATADIR%%/hash/lviv.xml > %%DATADIR%%/hash/lynx.xml > %%DATADIR%%/hash/m20.xml >@@ -355,6 +380,10 @@ libexec/mame/unidasm > %%DATADIR%%/hash/mac_hdflop.xml > %%DATADIR%%/hash/mbc200.xml > %%DATADIR%%/hash/mbc55x.xml >+%%DATADIR%%/hash/mbee_cart.xml >+%%DATADIR%%/hash/mbee_cass.xml >+%%DATADIR%%/hash/mbee_flop.xml >+%%DATADIR%%/hash/mbee_quik.xml > %%DATADIR%%/hash/mc10.xml > %%DATADIR%%/hash/mc1000_cass.xml > %%DATADIR%%/hash/mc1502_flop.xml >@@ -392,10 +421,10 @@ libexec/mame/unidasm > %%DATADIR%%/hash/msx1_cart.xml > %%DATADIR%%/hash/msx1_cass.xml > %%DATADIR%%/hash/msx1_flop.xml >+%%DATADIR%%/hash/msx2.hsi > %%DATADIR%%/hash/msx2_cart.xml > %%DATADIR%%/hash/msx2_cass.xml > %%DATADIR%%/hash/msx2_flop.xml >-%%DATADIR%%/hash/msx2.hsi > %%DATADIR%%/hash/msx2p_flop.xml > %%DATADIR%%/hash/msxr_flop.xml > %%DATADIR%%/hash/mt65_cass.xml >@@ -419,13 +448,15 @@ libexec/mame/unidasm > %%DATADIR%%/hash/nascom_socket.xml > %%DATADIR%%/hash/neocd.xml > %%DATADIR%%/hash/neogeo.xml >+%%DATADIR%%/hash/nes.hsi >+%%DATADIR%%/hash/nes.xml > %%DATADIR%%/hash/nes_ade.xml > %%DATADIR%%/hash/nes_datach.xml > %%DATADIR%%/hash/nes_kstudio.xml > %%DATADIR%%/hash/nes_ntbrom.xml >-%%DATADIR%%/hash/nes.hsi >-%%DATADIR%%/hash/nes.xml > %%DATADIR%%/hash/next.xml >+%%DATADIR%%/hash/next_cdrom.xml >+%%DATADIR%%/hash/next_hdd.xml > %%DATADIR%%/hash/ngp.xml > %%DATADIR%%/hash/ngpc.xml > %%DATADIR%%/hash/nimbus.xml >@@ -451,20 +482,27 @@ libexec/mame/unidasm > %%DATADIR%%/hash/pc1512_hdd.xml > %%DATADIR%%/hash/pc1640_flop.xml > %%DATADIR%%/hash/pc1640_hdd.xml >+%%DATADIR%%/hash/pc200.xml >+%%DATADIR%%/hash/pc6001_cart.xml >+%%DATADIR%%/hash/pc8001_flop.xml >+%%DATADIR%%/hash/pc8001mk2_flop.xml >+%%DATADIR%%/hash/pc8001mk2sr_flop.xml > %%DATADIR%%/hash/pc8201.xml > %%DATADIR%%/hash/pc8801_cass.xml >+%%DATADIR%%/hash/pc8801_cdrom.xml > %%DATADIR%%/hash/pc8801_flop.xml > %%DATADIR%%/hash/pc88va.xml >-%%DATADIR%%/hash/pc98_cd.xml > %%DATADIR%%/hash/pc98.xml >+%%DATADIR%%/hash/pc98_cd.xml > %%DATADIR%%/hash/pcd_flop.xml >-%%DATADIR%%/hash/pce_tourvision.xml > %%DATADIR%%/hash/pce.xml >+%%DATADIR%%/hash/pce_tourvision.xml > %%DATADIR%%/hash/pcecd.xml > %%DATADIR%%/hash/pcfx.xml > %%DATADIR%%/hash/pcw.xml > %%DATADIR%%/hash/pcw16.xml > %%DATADIR%%/hash/pcx_flop.xml >+%%DATADIR%%/hash/pdp1_ptp.xml > %%DATADIR%%/hash/pecom_cass.xml > %%DATADIR%%/hash/pegasus_cart.xml > %%DATADIR%%/hash/pencil2.xml >@@ -479,8 +517,9 @@ libexec/mame/unidasm > %%DATADIR%%/hash/pi_storyreader_v2_cart.xml > %%DATADIR%%/hash/picno.xml > %%DATADIR%%/hash/pico.xml >-%%DATADIR%%/hash/pippin_flop.xml > %%DATADIR%%/hash/pippin.xml >+%%DATADIR%%/hash/pippin_flop.xml >+%%DATADIR%%/hash/playmaker.xml > %%DATADIR%%/hash/plus4_cart.xml > %%DATADIR%%/hash/plus4_cass.xml > %%DATADIR%%/hash/plus4_flop.xml >@@ -513,13 +552,16 @@ libexec/mame/unidasm > %%DATADIR%%/hash/ql_flop.xml > %%DATADIR%%/hash/quizwiz.xml > %%DATADIR%%/hash/qx10_flop.xml >+%%DATADIR%%/hash/r8_card.xml > %%DATADIR%%/hash/r9751.xml > %%DATADIR%%/hash/radio86_cart.xml > %%DATADIR%%/hash/radio86_cass.xml > %%DATADIR%%/hash/rainbow.xml >-%%DATADIR%%/hash/README.md >+%%DATADIR%%/hash/roland_tnsc1.xml > %%DATADIR%%/hash/rwtrntcs.xml >-%%DATADIR%%/hash/rx78.xml >+%%DATADIR%%/hash/rx78_cart.xml >+%%DATADIR%%/hash/rx78_cass.xml >+%%DATADIR%%/hash/sagafox.xml > %%DATADIR%%/hash/sage2.xml > %%DATADIR%%/hash/saitek_egr.xml > %%DATADIR%%/hash/saitek_kso.xml >@@ -539,17 +581,18 @@ libexec/mame/unidasm > %%DATADIR%%/hash/segacd.xml > %%DATADIR%%/hash/sf7000.xml > %%DATADIR%%/hash/sg1000.xml >-%%DATADIR%%/hash/sgi_mips_hdd.xml > %%DATADIR%%/hash/sgi_mips.xml >+%%DATADIR%%/hash/sgi_mips_hdd.xml > %%DATADIR%%/hash/sgx.xml >+%%DATADIR%%/hash/singingstarkaraoke_cart.xml > %%DATADIR%%/hash/sitcom.xml > %%DATADIR%%/hash/smarttv_cart.xml > %%DATADIR%%/hash/smc777.xml > %%DATADIR%%/hash/sms.xml >+%%DATADIR%%/hash/snes.xml > %%DATADIR%%/hash/snes_bspack.xml > %%DATADIR%%/hash/snes_strom.xml > %%DATADIR%%/hash/snes_vkun.xml >-%%DATADIR%%/hash/snes.xml > %%DATADIR%%/hash/snotec.xml > %%DATADIR%%/hash/snread.xml > %%DATADIR%%/hash/snspell.xml >@@ -606,21 +649,28 @@ libexec/mame/unidasm > %%DATADIR%%/hash/timex_cass.xml > %%DATADIR%%/hash/timex_dock.xml > %%DATADIR%%/hash/tntell.xml >-%%DATADIR%%/hash/to_flop.xml >+%%DATADIR%%/hash/to770_cart.xml >+%%DATADIR%%/hash/to770a_cart.xml > %%DATADIR%%/hash/to7_cart.xml > %%DATADIR%%/hash/to7_cass.xml > %%DATADIR%%/hash/to7_qd.xml >-%%DATADIR%%/hash/to770_cart.xml >-%%DATADIR%%/hash/to770a_cart.xml > %%DATADIR%%/hash/to8_cass.xml > %%DATADIR%%/hash/to8_qd.xml >+%%DATADIR%%/hash/to_flop.xml >+%%DATADIR%%/hash/trs80_cass.xml >+%%DATADIR%%/hash/trs80_flop.xml >+%%DATADIR%%/hash/trs80_quik.xml > %%DATADIR%%/hash/trs80m2.xml > %%DATADIR%%/hash/trsm100.xml >+%%DATADIR%%/hash/ttwist_brainquest_cart.xml >+%%DATADIR%%/hash/turboextreme_cart.xml > %%DATADIR%%/hash/tutor.xml > %%DATADIR%%/hash/tvc_cart.xml > %%DATADIR%%/hash/tvc_cass.xml > %%DATADIR%%/hash/tvc_flop.xml > %%DATADIR%%/hash/tvgogo.xml >+%%DATADIR%%/hash/tx0_ptp.xml >+%%DATADIR%%/hash/u110_card.xml > %%DATADIR%%/hash/unichamp.xml > %%DATADIR%%/hash/ut88.xml > %%DATADIR%%/hash/uzebox.xml >@@ -643,18 +693,23 @@ libexec/mame/unidasm > %%DATADIR%%/hash/videopac.xml > %%DATADIR%%/hash/vii.xml > %%DATADIR%%/hash/vip.xml >+%%DATADIR%%/hash/vis.xml > %%DATADIR%%/hash/visicom.xml > %%DATADIR%%/hash/vixen.xml > %%DATADIR%%/hash/vsmile_cart.xml > %%DATADIR%%/hash/vsmile_cd.xml > %%DATADIR%%/hash/vsmileb_cart.xml > %%DATADIR%%/hash/vsmilem_cart.xml >+%%DATADIR%%/hash/vtech2_cass.xml >+%%DATADIR%%/hash/vtech_innotab_cart.xml >+%%DATADIR%%/hash/vtech_innotv_cart.xml > %%DATADIR%%/hash/vtech_storio_cart.xml > %%DATADIR%%/hash/vz_cass.xml > %%DATADIR%%/hash/vz_snap.xml > %%DATADIR%%/hash/wangpc.xml > %%DATADIR%%/hash/waveterm.xml > %%DATADIR%%/hash/wicat.xml >+%%DATADIR%%/hash/wizard_cart.xml > %%DATADIR%%/hash/wmbullet.xml > %%DATADIR%%/hash/wscolor.xml > %%DATADIR%%/hash/wswan.xml >@@ -666,6 +721,7 @@ libexec/mame/unidasm > %%DATADIR%%/hash/xegs.xml > %%DATADIR%%/hash/xerox820.xml > %%DATADIR%%/hash/xerox820ii.xml >+%%DATADIR%%/hash/z80clock.xml > %%DATADIR%%/hash/z80ne_cass.xml > %%DATADIR%%/hash/z80ne_flop.xml > %%DATADIR%%/hash/z88_cart.xml
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
Attachments on
bug 252362
:
221216
|
221217
|
223956
|
223957
|
223958
|
223959
|
224632
|
224633
|
233653
|
233733
|
233766
|
233767
|
233768
|
233830
|
234114
|
234115
|
234119
|
234120
|
234130
|
234289
|
234290
|
235445
|
235455
|
235456
|
235499
|
235504
|
235523
|
235526
|
235644
|
235645
|
235646
|
236147
|
237653
|
237654
|
237699
|
237700
|
237720
|
237734
|
237739