summaryrefslogtreecommitdiffstatshomepage
path: root/.gitattributes
diff options
context:
space:
mode:
author Fabio Priuli <etabeta78@users.noreply.github.com>2013-04-21 19:27:29 +0000
committer Fabio Priuli <etabeta78@users.noreply.github.com>2013-04-21 19:27:29 +0000
commitc1540080a1f2262a86b0cce00d734ac49bafbc92 (patch)
tree6cfbab2077f5eaebb01bea115746b9470752db49 /.gitattributes
parent335b6f828a3821a0dc84f86d55e6415a20f4160d (diff)
(MESS) nes.c: major refactoring and improvements of NES/FC cart emulation: [Fabio Priuli]
- converted carts, mappers and pcbs to use slot devices - fixed starting of Famicom, Famicom Twin and Dr. PCJr - fixed handling of "no disk" in FDS so that the system displays Mario and Luigi jumping around as expected - added AY8910 sound to Sunsoft-5B (Gimmick JPN sfx) - added YM2413 to VRC-7 (Lagrange Point OST) - added support for recorded samples to Jaleco sport titles and to Bandai Family Trainer Aerobics Studio, thanks to notes by hap and egoh, and recordings by Pongbashi (samples are needed because these games use a currently undumpable speech chip) - added support for NES-EVENT pcb used by Nintendo World Championship 1990, including dipswitches - added support for Galoob Game Genie real usage (in addition to the codes which Puggsy added to his cheat collections): when you load ggenie, a second cartslot becomes available to load another game attached to the cheat device (e.g. with "mess.exe nes -cart ggenie -cart2 smb") and you can enter the cheat codes as in a real NES - added support for Nantettatte!! Baseball lock-on mechanism, based on the tests performed by naruko on his carts: when you load nantbb, a second cartslot becomes available to load one of the two update minicarts (91 Hen or OB Hen) - improved emulation of Namcot 163, 175 and 340 boards, based on the tests performed by naruko, lidnariq and bootgod on the real hardware - moved Nantettatte!! Baseball minicarts to a separate list (nes_ntbrom.xml) because they cannot be loaded in the NES directly, but only through the nantbb subslot - emulated bus conflict (CPU/PRG) in PCBs documented as having it - partial emulation of open bus, enough to make working the games using it as a sort of protection - fixed crash when loading files using FFE mappers - fixed mirroring in some boards (Sunsoft DCS and UNL-CC-21) and in some games (e.g. Paris Dakar Rally Special and Escape from Atlantis) - fixed a few bugs in Tengen 800032 emulation (mapper 64), promoting Klax, Xybots and Road Runner to work state - fixed Tengen 800037 emulation (mapper 158), promoting US Alien Syndrome to work state - added working emulation of many bootleg pcbs used for pirate conversions from FDS (Ai Senshi Nicol, Doki Doki Panic, Fuuun Shaolin Kyo, Green Beret, Monty no Doki Doki Daidassou, Tobidase Daisakusen, Super Mario Bros Malee 2 / Genius Merio Bros...) - improved emulation of many pirate pcb (BMC-GOLDENCARD-6IN1, KS7013B, KS7012, BMC-GHOSTBUSTERS63IN1, UNL-MALISB, MAXI15 and more...) - improved RacerMate Challenge II emulation, but the game is still not working due to unemulated bicycle controller - added CPU-based IRQ mode in Tengen 800032 emulation (mapper 64), fixing Skulls & Crossbones gfx (but the game is still not working) - fixed many small inaccuracies in the old code, spot during the conversion - added support for most other known pcbs, even if in most cases emulation is only sketchy - reduced the need of fake alt pbcs for boards which only differed by mirroring handling (these are now recognized through the "mirroring" feature) - removed fake wram which was added to a lot of partially documented pcbs and re-added it only where actually present, so to more accurately document what was really in the carts Out of whatsnew: There's still a lot to do (e.g. to clean up the implementation of the pirate pcbs) but I hope that submitting this now I can get some wider testing help so to catch and fix regressions before next release :)
Diffstat (limited to '.gitattributes')
-rw-r--r--.gitattributes87
1 files changed, 85 insertions, 2 deletions
diff --git a/.gitattributes b/.gitattributes
index d51da4f00e4..634dc34bb77 100644
--- a/.gitattributes
+++ b/.gitattributes
@@ -157,6 +157,7 @@ hash/neocd.xml svneol=native#text/xml
hash/neogeo.xml svneol=native#text/xml
hash/nes.hsi svneol=native#text/plain
hash/nes.xml svneol=native#text/xml
+hash/nes_ntbrom.xml svneol=native#text/xml
hash/next.xml svneol=native#text/xml
hash/ngp.xml svneol=native#text/xml
hash/ngpc.xml svneol=native#text/xml
@@ -6502,7 +6503,6 @@ src/mess/includes/mz80.h svneol=native#text/plain
src/mess/includes/nascom1.h svneol=native#text/plain
src/mess/includes/nc.h svneol=native#text/plain
src/mess/includes/nes.h svneol=native#text/plain
-src/mess/includes/nes_mmc.h svneol=native#text/plain
src/mess/includes/newbrain.h svneol=native#text/plain
src/mess/includes/next.h svneol=native#text/plain
src/mess/includes/ob68k1a.h svneol=native#text/plain
@@ -7362,12 +7362,95 @@ src/mess/machine/ne1000.h svneol=native#text/plain
src/mess/machine/ne2000.c svneol=native#text/plain
src/mess/machine/ne2000.h svneol=native#text/plain
src/mess/machine/nes.c svneol=native#text/plain
+src/mess/machine/nes_ave.c svneol=native#text/plain
+src/mess/machine/nes_ave.h svneol=native#text/plain
+src/mess/machine/nes_bandai.c svneol=native#text/plain
+src/mess/machine/nes_bandai.h svneol=native#text/plain
+src/mess/machine/nes_benshieng.c svneol=native#text/plain
+src/mess/machine/nes_benshieng.h svneol=native#text/plain
+src/mess/machine/nes_bootleg.c svneol=native#text/plain
+src/mess/machine/nes_bootleg.h svneol=native#text/plain
+src/mess/machine/nes_camerica.c svneol=native#text/plain
+src/mess/machine/nes_camerica.h svneol=native#text/plain
+src/mess/machine/nes_cne.c svneol=native#text/plain
+src/mess/machine/nes_cne.h svneol=native#text/plain
+src/mess/machine/nes_cony.c svneol=native#text/plain
+src/mess/machine/nes_cony.h svneol=native#text/plain
+src/mess/machine/nes_discrete.c svneol=native#text/plain
+src/mess/machine/nes_discrete.h svneol=native#text/plain
+src/mess/machine/nes_event.c svneol=native#text/plain
+src/mess/machine/nes_event.h svneol=native#text/plain
+src/mess/machine/nes_ggenie.c svneol=native#text/plain
+src/mess/machine/nes_ggenie.h svneol=native#text/plain
+src/mess/machine/nes_henggedianzi.c svneol=native#text/plain
+src/mess/machine/nes_henggedianzi.h svneol=native#text/plain
+src/mess/machine/nes_hes.c svneol=native#text/plain
+src/mess/machine/nes_hes.h svneol=native#text/plain
+src/mess/machine/nes_hosenkan.c svneol=native#text/plain
+src/mess/machine/nes_hosenkan.h svneol=native#text/plain
src/mess/machine/nes_ines.c svneol=native#text/plain
-src/mess/machine/nes_mmc.c svneol=native#text/plain
+src/mess/machine/nes_irem.c svneol=native#text/plain
+src/mess/machine/nes_irem.h svneol=native#text/plain
+src/mess/machine/nes_jaleco.c svneol=native#text/plain
+src/mess/machine/nes_jaleco.h svneol=native#text/plain
+src/mess/machine/nes_jy.c svneol=native#text/plain
+src/mess/machine/nes_jy.h svneol=native#text/plain
+src/mess/machine/nes_kaiser.c svneol=native#text/plain
+src/mess/machine/nes_kaiser.h svneol=native#text/plain
+src/mess/machine/nes_konami.c svneol=native#text/plain
+src/mess/machine/nes_konami.h svneol=native#text/plain
+src/mess/machine/nes_legacy.c svneol=native#text/plain
+src/mess/machine/nes_legacy.h svneol=native#text/plain
+src/mess/machine/nes_mmc1.c svneol=native#text/plain
+src/mess/machine/nes_mmc1.h svneol=native#text/plain
+src/mess/machine/nes_mmc2.c svneol=native#text/plain
+src/mess/machine/nes_mmc2.h svneol=native#text/plain
+src/mess/machine/nes_mmc3.c svneol=native#text/plain
+src/mess/machine/nes_mmc3.h svneol=native#text/plain
+src/mess/machine/nes_mmc3_clones.c svneol=native#text/plain
+src/mess/machine/nes_mmc3_clones.h svneol=native#text/plain
+src/mess/machine/nes_mmc5.c svneol=native#text/plain
+src/mess/machine/nes_mmc5.h svneol=native#text/plain
+src/mess/machine/nes_multigame.c svneol=native#text/plain
+src/mess/machine/nes_multigame.h svneol=native#text/plain
+src/mess/machine/nes_namcot.c svneol=native#text/plain
+src/mess/machine/nes_namcot.h svneol=native#text/plain
+src/mess/machine/nes_nanjing.c svneol=native#text/plain
+src/mess/machine/nes_nanjing.h svneol=native#text/plain
+src/mess/machine/nes_ntdec.c svneol=native#text/plain
+src/mess/machine/nes_ntdec.h svneol=native#text/plain
+src/mess/machine/nes_nxrom.c svneol=native#text/plain
+src/mess/machine/nes_nxrom.h svneol=native#text/plain
src/mess/machine/nes_pcb.c svneol=native#text/plain
+src/mess/machine/nes_pirate.c svneol=native#text/plain
+src/mess/machine/nes_pirate.h svneol=native#text/plain
+src/mess/machine/nes_pt554.c svneol=native#text/plain
+src/mess/machine/nes_pt554.h svneol=native#text/plain
+src/mess/machine/nes_racermate.c svneol=native#text/plain
+src/mess/machine/nes_racermate.h svneol=native#text/plain
+src/mess/machine/nes_rcm.c svneol=native#text/plain
+src/mess/machine/nes_rcm.h svneol=native#text/plain
+src/mess/machine/nes_rexsoft.c svneol=native#text/plain
+src/mess/machine/nes_rexsoft.h svneol=native#text/plain
+src/mess/machine/nes_sachen.c svneol=native#text/plain
+src/mess/machine/nes_sachen.h svneol=native#text/plain
src/mess/machine/nes_slot.c svneol=native#text/plain
src/mess/machine/nes_slot.h svneol=native#text/plain
+src/mess/machine/nes_somari.c svneol=native#text/plain
+src/mess/machine/nes_somari.h svneol=native#text/plain
+src/mess/machine/nes_sunsoft.c svneol=native#text/plain
+src/mess/machine/nes_sunsoft.h svneol=native#text/plain
+src/mess/machine/nes_sunsoft_dcs.c svneol=native#text/plain
+src/mess/machine/nes_sunsoft_dcs.h svneol=native#text/plain
+src/mess/machine/nes_taito.c svneol=native#text/plain
+src/mess/machine/nes_taito.h svneol=native#text/plain
+src/mess/machine/nes_tengen.c svneol=native#text/plain
+src/mess/machine/nes_tengen.h svneol=native#text/plain
+src/mess/machine/nes_txc.c svneol=native#text/plain
+src/mess/machine/nes_txc.h svneol=native#text/plain
src/mess/machine/nes_unif.c svneol=native#text/plain
+src/mess/machine/nes_waixing.c svneol=native#text/plain
+src/mess/machine/nes_waixing.h svneol=native#text/plain
src/mess/machine/nextkbd.c svneol=native#text/plain
src/mess/machine/nextkbd.h svneol=native#text/plain
src/mess/machine/nextmo.c svneol=native#text/plain