nes.xml: Shìtiān is a name, no space in the middle.
This commit is contained in:
parent
73a3b2bc7a
commit
923bb87dcc
@ -67366,8 +67366,8 @@ from the NEStopia source, hence they would require confirmation. -->
|
||||
</part>
|
||||
</software>
|
||||
|
||||
<software name="dishit" cloneof="moshenfs">
|
||||
<description>Dì Shì Tiān (China)</description>
|
||||
<software name="dshitian" cloneof="moshenfs">
|
||||
<description>Dì Shìtiān (China)</description>
|
||||
<year>19??</year>
|
||||
<publisher>Waixing?</publisher>
|
||||
<info name="alt_title" value="帝释天"/>
|
||||
|
@ -2741,15 +2741,15 @@ void mmpanic_state::funkyfig_sound_portmap(address_map &map)
|
||||
void hanakanz_state::hanakanz_rombank_w(uint8_t data)
|
||||
{
|
||||
m_bank1->set_entry(data & 0x0f);
|
||||
m_bank2->set_entry(((data & 0xf0) >> 4));
|
||||
m_bank2->set_entry((data & 0xf0) >> 4);
|
||||
}
|
||||
|
||||
void hanakanz_state::hanakanz_map(address_map &map)
|
||||
{
|
||||
map(0x0000, 0x5fff).rom(); // ROM
|
||||
map(0x6000, 0x6fff).bankrw("bank0"); // RAM
|
||||
map(0x0000, 0x5fff).rom(); // ROM
|
||||
map(0x6000, 0x6fff).bankrw("bank0"); // RAM
|
||||
map(0x7000, 0x7fff).bankrw("bank2"); // RAM (Banked)
|
||||
map(0x8000, 0xffff).bankr("bank1"); // ROM (Banked)
|
||||
map(0x8000, 0xffff).bankr("bank1"); // ROM (Banked)
|
||||
}
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user