mirror of
https://github.com/holub/mame
synced 2025-04-23 08:49:55 +03:00
montreal: small fix to internal artwork
This commit is contained in:
parent
e7361160fd
commit
532d9aa59b
@ -4,7 +4,9 @@
|
||||
/*******************************************************************************
|
||||
|
||||
Mephisto Mondial 68000XL
|
||||
The chess engine is actually the one from Mephisto Dallas.
|
||||
|
||||
It was made for the US market. The chess engine is actually the one from
|
||||
Mephisto Dallas.
|
||||
|
||||
Hardware notes:
|
||||
- TS68000CP12 @ 12MHz
|
||||
|
@ -105,7 +105,7 @@ void roma2_state::strobe_w(u8 data)
|
||||
|
||||
void roma2_state::dac_w(offs_t offset, u8 data)
|
||||
{
|
||||
// a0,d0: dac data
|
||||
// a1,d0: dac data
|
||||
u8 mask = 1 << offset;
|
||||
m_dac_data = (m_dac_data & ~mask) | ((data & 1) ? mask : 0);
|
||||
m_dac->write(m_dac_data);
|
||||
@ -113,7 +113,7 @@ void roma2_state::dac_w(offs_t offset, u8 data)
|
||||
|
||||
void roma2_state::input_w(offs_t offset, u8 data)
|
||||
{
|
||||
// a0-a3,d0: input mux
|
||||
// a1-a4,d0: input mux
|
||||
u8 mask = 1 << offset;
|
||||
m_inp_mux = (m_inp_mux & ~mask) | ((data & 1) ? mask : 0);
|
||||
}
|
||||
|
@ -511,7 +511,7 @@ license:CC0-1.0
|
||||
<element ref="text_p4"><bounds x="86" y="98" width="1.8" height="1.7" /></element>
|
||||
<element ref="text_p3"><bounds x="91" y="98" width="1.8" height="1.7" /></element>
|
||||
<element ref="text_p2"><bounds x="96" y="98" width="1.8" height="1.7" /></element>
|
||||
<element ref="text_p1"><bounds x="81" y="103" width="1.8" height="1.7" /></element>
|
||||
<element ref="text_p1"><bounds x="76" y="103" width="1.8" height="1.7" /></element>
|
||||
<element ref="blackw"><bounds x="84.5" y="105.1" width="1.3" height="1.3" /></element>
|
||||
<element ref="white"><bounds x="89.5" y="105.1" width="1.3" height="1.3" /></element>
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user