From ed815349286ee42a74e37c50c0130d7932acb61e Mon Sep 17 00:00:00 2001 From: ClawGrip Date: Sun, 24 Nov 2024 00:00:09 +0100 Subject: [PATCH 1/4] misc/compucranes.cpp: Fix hash for 'mastcranea' program ROM (#13011) --- src/mame/misc/compucranes.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mame/misc/compucranes.cpp b/src/mame/misc/compucranes.cpp index 43da304f3aa..aa320359256 100644 --- a/src/mame/misc/compucranes.cpp +++ b/src/mame/misc/compucranes.cpp @@ -92,7 +92,7 @@ ROM_END // "GANCHONEW V7" PCB with AT PSU connector ROM_START(mastcranea) ROM_REGION(0x80000, "maincpu", 0) - ROM_LOAD("v7.ic3", 0x00000, 0x40000, CRC(733dfcbc) SHA1(d18d7945e9b8f189f2169d3d90c3cfea97d3b39c)) // 1ST AND 2ND HALF IDENTICAL (W29C020C) + ROM_LOAD("v7.ic3", 0x00000, 0x40000, CRC(299c9ad1) SHA1(b0ba2ab588151dba89307e118ba061cad2b8116b)) // 1ST AND 2ND HALF IDENTICAL (W29C020C) ROM_REGION(0x00117, "pld", 0) ROM_LOAD("atf16v8.ic4", 0x00000, 0x00117, CRC(4d665a06) SHA1(504f0107482f636cd216579e982c6162c0b120a7)) // Verified to be the same on all known PCB revisions From ca97e3b8f7b938d97f8cc7aa52ac3f9fe5ac508b Mon Sep 17 00:00:00 2001 From: Ivan Vangelista Date: Sun, 24 Nov 2024 06:28:58 +0100 Subject: [PATCH 2/4] cvs/quasar.cpp: fixed MT08973 --- src/mame/cvs/quasar.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mame/cvs/quasar.cpp b/src/mame/cvs/quasar.cpp index 0a846b3c856..0e7992aa138 100644 --- a/src/mame/cvs/quasar.cpp +++ b/src/mame/cvs/quasar.cpp @@ -337,7 +337,7 @@ int quasar_state::audio_t1_r() void quasar_state::program(address_map &map) { map(0x0000, 0x13ff).rom(); - map(0x1400, 0x14ff).ram().w(FUNC(quasar_state::bullet_w)).share(m_bullet_ram); + map(0x1400, 0x14ff).mirror(0x6000).ram().w(FUNC(quasar_state::bullet_w)).share(m_bullet_ram); map(0x1500, 0x15ff).mirror(0x6000).rw(m_s2636[0], FUNC(s2636_device::read_data), FUNC(s2636_device::write_data)); map(0x1600, 0x16ff).mirror(0x6000).rw(m_s2636[1], FUNC(s2636_device::read_data), FUNC(s2636_device::write_data)); map(0x1700, 0x17ff).mirror(0x6000).rw(m_s2636[2], FUNC(s2636_device::read_data), FUNC(s2636_device::write_data)); From 5b34698251ebe607f76c64919dd5454bd9c25ccd Mon Sep 17 00:00:00 2001 From: Vas Crabb Date: Tue, 26 Nov 2024 06:27:36 +1100 Subject: [PATCH 3/4] msx1_cass.xml, pc8801_flop.xml, x1_cass.xml: Correct "Danchizuma". --- hash/msx1_cass.xml | 4 ++-- hash/pc8801_flop.xml | 8 ++++---- hash/x1_cass.xml | 4 ++-- 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/hash/msx1_cass.xml b/hash/msx1_cass.xml index 6580009967a..200ad017897 100644 --- a/hash/msx1_cass.xml +++ b/hash/msx1_cass.xml @@ -4163,8 +4163,8 @@ license:CC0-1.0 - - Danchi Tsuma no Yuuwaku (Japan) + + Danchizuma no Yuuwaku (Japan) 1985 KOEI diff --git a/hash/pc8801_flop.xml b/hash/pc8801_flop.xml index a6d8171e698..d6268f3fa32 100644 --- a/hash/pc8801_flop.xml +++ b/hash/pc8801_flop.xml @@ -8230,8 +8230,8 @@ ExtractDisk [02]"DAIVA_B " -> "daiva_02.d88" - - Danchi Tsuma no Yuuwaku + + Danchizuma no Yuuwaku 1983 光栄 (Koei) @@ -8244,8 +8244,8 @@ ExtractDisk [02]"DAIVA_B " -> "daiva_02.d88" - - Danchi Tsuma no Yuuwaku (alt) + + Danchizuma no Yuuwaku (alt) 1983 光栄 (Koei) diff --git a/hash/x1_cass.xml b/hash/x1_cass.xml index 07d649fe7a2..d9c3c7bf576 100644 --- a/hash/x1_cass.xml +++ b/hash/x1_cass.xml @@ -224,8 +224,8 @@ Titles, publishers and release dates taken from: - - Danchi Tsuma no Yuuwaku + + Danchizuma no Yuuwaku 1983 光栄 (Koei) From 5d8e4cf07e3b59eea385ec29567f38e85ba06867 Mon Sep 17 00:00:00 2001 From: Vas Crabb Date: Sat, 30 Nov 2024 03:05:16 +1100 Subject: [PATCH 4/4] Bumped version to 0.272 --- android-project/app/src/main/AndroidManifest.xml | 4 ++-- docs/source/conf.py | 4 ++-- makefile | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/android-project/app/src/main/AndroidManifest.xml b/android-project/app/src/main/AndroidManifest.xml index 4801bc308ca..849c6bd28a2 100644 --- a/android-project/app/src/main/AndroidManifest.xml +++ b/android-project/app/src/main/AndroidManifest.xml @@ -4,8 +4,8 @@ --> diff --git a/docs/source/conf.py b/docs/source/conf.py index ff6181e63fa..8ac9328bedd 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -63,9 +63,9 @@ copyright = u'1997-2024, MAMEdev and contributors' # built documents. # # The short X.Y version. -version = '0.271' +version = '0.272' # The full version, including alpha/beta/rc tags. -release = '0.271' +release = '0.272' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/makefile b/makefile index 6039e9e7e9d..0276fb035b7 100644 --- a/makefile +++ b/makefile @@ -1578,7 +1578,7 @@ endif ifeq (posix,$(SHELLTYPE)) $(GENDIR)/version.cpp: makefile $(GENDIR)/git_desc | $(GEN_FOLDERS) - @echo '#define BARE_BUILD_VERSION "0.271"' > $@ + @echo '#define BARE_BUILD_VERSION "0.272"' > $@ @echo '#define BARE_VCS_REVISION "$(NEW_GIT_VERSION)"' >> $@ @echo 'extern const char bare_build_version[];' >> $@ @echo 'extern const char bare_vcs_revision[];' >> $@ @@ -1588,7 +1588,7 @@ $(GENDIR)/version.cpp: makefile $(GENDIR)/git_desc | $(GEN_FOLDERS) @echo 'const char build_version[] = BARE_BUILD_VERSION " (" BARE_VCS_REVISION ")";' >> $@ else $(GENDIR)/version.cpp: makefile $(GENDIR)/git_desc | $(GEN_FOLDERS) - @echo #define BARE_BUILD_VERSION "0.271" > $@ + @echo #define BARE_BUILD_VERSION "0.272" > $@ @echo #define BARE_VCS_REVISION "$(NEW_GIT_VERSION)" >> $@ @echo extern const char bare_build_version[]; >> $@ @echo extern const char bare_vcs_revision[]; >> $@