[mednafen] branch master updated (1bf702d -> afa20bb)

Stephen Kitt skitt at moszumanska.debian.org
Sun Jun 28 20:12:39 UTC 2015


This is an automated email from the git hooks/post-receive script.

skitt pushed a change to branch master
in repository mednafen.

      from  1bf702d   Release to unstable.
       new  fd8b9d2   The PSX test executables have moved to tests/psx.
       new  9206b48   Imported Upstream version 0.9.38.5+dfsg
       new  dfc1cce   Merge tag 'upstream/0.9.38.5+dfsg'
       new  669cfe1   New upstream release.
       new  afa20bb   Release.

The 5 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.


Summary of changes:
 ChangeLog                              |   33 +
 Documentation/gb.html                  |    2 +-
 Documentation/gba.html                 |    2 +-
 Documentation/gg.html                  |    2 +-
 Documentation/lynx.html                |    2 +-
 Documentation/md.html                  |    2 +-
 Documentation/mednafen.html            |    2 +-
 Documentation/modules.def              |    2 +-
 Documentation/nes.html                 |    2 +-
 Documentation/netplay.html             |    2 +-
 Documentation/ngp.html                 |    2 +-
 Documentation/pce.html                 |    2 +-
 Documentation/pce_fast.html            |    2 +-
 Documentation/pcfx.html                |    2 +-
 Documentation/psx.html                 |    2 +-
 Documentation/settings.def             |   16 +-
 Documentation/sms.html                 |    2 +-
 Documentation/snes.html                |    2 +-
 Documentation/vb.html                  |    2 +-
 Documentation/wswan.html               |    2 +-
 TODO                                   |    7 +
 aclocal.m4                             |   12 -
 configure                              |   59 +-
 configure.ac                           |   17 +-
 debian/changelog                       |    6 +
 debian/copyright                       |    2 +-
 debian/patches/use-system-mpcdec.patch |    8 +-
 debian/patches/use-system-tremor.patch |    8 +-
 debian/patches/use-system-trio.patch   |    8 +-
 include/config.h.in                    |    3 +
 src/Makefile.am                        |    8 +-
 src/Makefile.in                        |   98 +-
 src/MemoryStream.cpp                   |   14 +-
 src/SNSFLoader.cpp                     |  131 ++
 src/SNSFLoader.h                       |   25 +
 src/SPCReader.cpp                      |  145 ++
 src/SPCReader.h                        |   63 +
 src/hash/sha1.cpp                      |   22 +-
 src/hash/sha256.cpp                    |   22 +-
 src/hw_cpu/huc6280/huc6280.cpp         |   56 +-
 src/mednafen.cpp                       |   56 +-
 src/nes/boards/n106.cpp                |   40 +-
 src/pce_fast/huc6280.cpp               |   42 +-
 src/pce_fast/pcecd_drive.cpp           |   14 -
 src/pcfx/king-bgfast.inc               |   15 +-
 src/pcfx/king.cpp                      |   38 +-
 src/psx/cdc.cpp                        |   41 +-
 src/psx/cdc.h                          |    1 +
 src/psx/gpu.cpp                        |    2 +-
 src/psx/input/memcard.cpp              |   12 +-
 src/snes/interface.cpp                 |  146 +-
 src/snes_faust/Makefile.am             |   10 +
 src/{lynx => snes_faust}/Makefile.in   |   51 +-
 src/snes_faust/PPU_DESIGN              |   71 +
 src/snes_faust/apu.cpp                 |  425 ++++++
 src/snes_faust/apu.h                   |   20 +
 src/snes_faust/cart.cpp                |  340 +++++
 src/snes_faust/cart.h                  |   15 +
 src/snes_faust/cpu.cpp                 | 2171 +++++++++++++++++++++++++++
 src/snes_faust/cpu.h                   |  134 ++
 src/snes_faust/cpu_loop_body.inc       |  309 ++++
 src/snes_faust/dma.inc                 |  597 ++++++++
 src/snes_faust/dsp.inc                 | 1303 +++++++++++++++++
 src/snes_faust/input.cpp               |  319 ++++
 src/snes_faust/input.h                 |   19 +
 src/snes_faust/ppu.cpp                 | 2516 ++++++++++++++++++++++++++++++++
 src/snes_faust/ppu.h                   |   20 +
 src/snes_faust/snes.cpp                |  889 +++++++++++
 src/snes_faust/snes.h                  |   71 +
 src/snes_faust/spc700.inc              | 1861 +++++++++++++++++++++++
 src/sound/OwlResampler.cpp             |   65 +-
 src/sound/OwlResampler.h               |    8 +-
 src/string/trim.cpp                    |    8 +
 src/string/trim.h                      |    1 +
 src/tests.cpp                          |   22 +
 src/wswan/main.cpp                     |   21 +-
 tests/pce/decimal/XXc.inc              |  284 ++++
 tests/pce/decimal/adc.asm              |    9 +
 tests/pce/decimal/adc.pce              |  Bin 0 -> 1048576 bytes
 tests/pce/decimal/clean.sh             |    4 +
 tests/pce/decimal/gen-results.cpp      |  127 ++
 tests/pce/decimal/make.sh              |    6 +
 tests/pce/decimal/sbc.asm              |    9 +
 tests/pce/decimal/sbc.pce              |  Bin 0 -> 1048576 bytes
 tests/pce/font.bin                     |  Bin 0 -> 8192 bytes
 85 files changed, 12456 insertions(+), 455 deletions(-)
 create mode 100644 src/SNSFLoader.cpp
 create mode 100644 src/SNSFLoader.h
 create mode 100644 src/SPCReader.cpp
 create mode 100644 src/SPCReader.h
 create mode 100644 src/snes_faust/Makefile.am
 copy src/{lynx => snes_faust}/Makefile.in (93%)
 create mode 100644 src/snes_faust/PPU_DESIGN
 create mode 100644 src/snes_faust/apu.cpp
 create mode 100644 src/snes_faust/apu.h
 create mode 100644 src/snes_faust/cart.cpp
 create mode 100644 src/snes_faust/cart.h
 create mode 100644 src/snes_faust/cpu.cpp
 create mode 100644 src/snes_faust/cpu.h
 create mode 100644 src/snes_faust/cpu_loop_body.inc
 create mode 100644 src/snes_faust/dma.inc
 create mode 100644 src/snes_faust/dsp.inc
 create mode 100644 src/snes_faust/input.cpp
 create mode 100644 src/snes_faust/input.h
 create mode 100644 src/snes_faust/ppu.cpp
 create mode 100644 src/snes_faust/ppu.h
 create mode 100644 src/snes_faust/snes.cpp
 create mode 100644 src/snes_faust/snes.h
 create mode 100644 src/snes_faust/spc700.inc
 create mode 100644 tests/pce/decimal/XXc.inc
 create mode 100644 tests/pce/decimal/adc.asm
 create mode 100644 tests/pce/decimal/adc.pce
 create mode 100755 tests/pce/decimal/clean.sh
 create mode 100644 tests/pce/decimal/gen-results.cpp
 create mode 100755 tests/pce/decimal/make.sh
 create mode 100644 tests/pce/decimal/sbc.asm
 create mode 100644 tests/pce/decimal/sbc.pce
 create mode 100644 tests/pce/font.bin

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-games/mednafen.git



More information about the Pkg-games-commits mailing list