Previous 199869 Revisions Next

r36231 Tuesday 3rd March, 2015 at 22:49:35 UTC by David Haywood
Merge branch 'master' of https://github.com/mamedev/mame
[src/emu/cpu/i386]x87ops.inc
[src/mess/drivers]pasogo.c

trunk/src/emu/cpu/i386/x87ops.inc
r244742r244743
226226
227227void i386_device::x87_set_stack_underflow()
228228{
229   m_x87_sw |= X87_SW_C1 | X87_SW_IE | X87_SW_SF;
229   m_x87_sw &= ~X87_SW_C1;
230   m_x87_sw |= X87_SW_IE | X87_SW_SF;
230231}
231232
232233void i386_device::x87_set_stack_overflow()
233234{
234   m_x87_sw &= ~X87_SW_C1;
235   m_x87_sw |= X87_SW_IE | X87_SW_SF;
235   m_x87_sw |= X87_SW_C1 | X87_SW_IE | X87_SW_SF;
236236}
237237
238238int i386_device::x87_inc_stack()
trunk/src/mess/drivers/pasogo.c
r244742r244743
467467
468468PALETTE_INIT_MEMBER(pasogo_state, pasogo)
469469{
470   palette.set_pen_color(0, rgb_t(160, 190, 170));
471   palette.set_pen_color(1, rgb_t(40, 50, 70));
470   palette.set_pen_color(0, rgb_t(80, 130, 130));
471   palette.set_pen_color(1, rgb_t(40, 60, 140));
472472}
473473
474474


Previous 199869 Revisions Next


© 1997-2024 The MAME Team