mirror of
https://github.com/holub/mame
synced 2025-04-29 11:30:28 +03:00
Merge branch 'master' of https://github.com/mamedev/mame
This commit is contained in:
commit
c5deacfe57
@ -226,13 +226,13 @@ void i386_device::x87_write_stack(int i, floatx80 value, int update_tag)
|
|||||||
|
|
||||||
void i386_device::x87_set_stack_underflow()
|
void i386_device::x87_set_stack_underflow()
|
||||||
{
|
{
|
||||||
m_x87_sw |= X87_SW_C1 | X87_SW_IE | X87_SW_SF;
|
m_x87_sw &= ~X87_SW_C1;
|
||||||
|
m_x87_sw |= X87_SW_IE | X87_SW_SF;
|
||||||
}
|
}
|
||||||
|
|
||||||
void i386_device::x87_set_stack_overflow()
|
void i386_device::x87_set_stack_overflow()
|
||||||
{
|
{
|
||||||
m_x87_sw &= ~X87_SW_C1;
|
m_x87_sw |= X87_SW_C1 | X87_SW_IE | X87_SW_SF;
|
||||||
m_x87_sw |= X87_SW_IE | X87_SW_SF;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
int i386_device::x87_inc_stack()
|
int i386_device::x87_inc_stack()
|
||||||
|
@ -467,8 +467,8 @@ INPUT_PORTS_END
|
|||||||
|
|
||||||
PALETTE_INIT_MEMBER(pasogo_state, pasogo)
|
PALETTE_INIT_MEMBER(pasogo_state, pasogo)
|
||||||
{
|
{
|
||||||
palette.set_pen_color(0, rgb_t(160, 190, 170));
|
palette.set_pen_color(0, rgb_t(80, 130, 130));
|
||||||
palette.set_pen_color(1, rgb_t(40, 50, 70));
|
palette.set_pen_color(1, rgb_t(40, 60, 140));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user