Merge remote-tracking branch 'mainline/release0261' into HEAD

This commit is contained in:
Vas Crabb 2023-11-27 09:06:26 +11:00
commit 97e5d2215c
7 changed files with 7 additions and 7 deletions

View File

@ -24,7 +24,7 @@ license:CC0-1.0
<info name="serial" value="RC-20" />
<part name="cart" interface="cz_cart">
<dataarea name="rom" size="0x4000"> <!-- restored from a sysex dump -->
<rom name="rc20.bin" size="0x4000" crc="c0ae5b20" sha1="38df0703d469a53f2f2af00eb94de018d7f95a73" status="baddump" />
<rom name="rc20.bin" size="0x4000" crc="237a2516" sha1="d1d697fbca0e16a07fa6d2710d2f7327cae81704" status="baddump" />
</dataarea>
</part>
</software>

View File

@ -488,7 +488,7 @@ license:CC0-1.0
</software>
<software name="kazan">
<description>Seto Taisho To Kazan</description>
<description>Seto Taisho to Kazan</description>
<year>2017</year>
<publisher>Monument Microgames</publisher>
<info name="developer" value="Alessandro Grussu" />

View File

@ -35766,7 +35766,7 @@ Side B - 5 - Campagna Abbonamenti (original release)
</software>
<software name="lnr4_it">
<description>Load'N'Run N. 4 (Italy) - Aprile 1984</description>
<description>Load'N'Run (Italy) N. 4 - Aprile 1984</description>
<year>1984</year>
<publisher>MK Periodici</publisher>
<notes><![CDATA[

View File

@ -112,7 +112,7 @@ static const char *const s_st1_ops[16] =
static const char *const s_tlb_ops[16] =
{
"", "", "", "ritlb0",
"iitlb", "pitlb", "witlb", "ritlb1"
"iitlb", "pitlb", "witlb", "ritlb1",
"", "", "", "rdtlb0",
"idtlb", "pdtlb", "wdtlb", "rdtlb1"
};

View File

@ -594,7 +594,7 @@ void cz1_state::main_pb_w(u8 data)
if (BIT(data ^ m_main_port[1], 2))
m_subcpu->set_input_line(UPD7810_INTF1, BIT(data, 2));
if (!BIT(data, 6) && BIT(m_main_port[1], 6) && !BIT(m_main_port[2], 2))
if (BIT(data, 4) && !BIT(m_main_port[1], 4) && BIT(m_main_port[1], 6))
m_cart->write(m_cart_addr, m_main_port[0]);
m_hd44780->e_w(BIT(~data, 7));

View File

@ -1639,7 +1639,7 @@ void sbhoei_state::sbhoei_soundlatch_w(uint8_t data)
{
m_soundlatch->write(data & 0x7f);
m_8039->set_input_line(0, (data & 0x80) ? ASSERT_LINE : CLEAR_LINE);
machine().scheduler().perfect_quantum(attotime::from_usec(50)); // main CPU polls for response from 8039
machine().scheduler().perfect_quantum(attotime::from_usec(100)); // main CPU polls for response from 8039
}
void sbhoei_state::p2_w(uint8_t data)

View File

@ -2229,4 +2229,4 @@ ROM_END
// year, name, parent, compat, machine, input, class, init, company, fullname, flags
CONS( 2005, beena, 0, 0, sega_beena, sega_beena, sega_beena_state, empty_init, "Sega", "Advanced Pico BEENA", MACHINE_IMPERFECT_GRAPHICS|MACHINE_IMPERFECT_TIMING|MACHINE_IMPERFECT_SOUND )
CONS( 2005, tvochken, 0, 0, sega_9h0_0008, tvochken, tvochken_state, empty_init, "Sega", "TV Ocha-Ken", MACHINE_REQUIRES_ARTWORK|MACHINE_IMPERFECT_GRAPHICS|MACHINE_IMPERFECT_TIMING|MACHINE_IMPERFECT_SOUND )
CONS( 2005, tvochken, 0, 0, sega_9h0_0008, tvochken, tvochken_state, empty_init, "Sega", "TV Ocha-Ken", MACHINE_NOT_WORKING|MACHINE_REQUIRES_ARTWORK|MACHINE_IMPERFECT_GRAPHICS|MACHINE_IMPERFECT_TIMING|MACHINE_IMPERFECT_SOUND )