Previous | 199869 Revisions | Next |
r36228 Tuesday 3rd March, 2015 at 22:06:54 UTC by Samuele Zannoli |
---|
Merge branch 'master' of https://github.com/mamedev/mame |
[src/emu/cpu/i386] | x87ops.inc |
r244739 | r244740 | |
---|---|---|
226 | 226 | |
227 | 227 | void i386_device::x87_set_stack_underflow() |
228 | 228 | { |
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; | |
230 | 231 | } |
231 | 232 | |
232 | 233 | void i386_device::x87_set_stack_overflow() |
233 | 234 | { |
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; | |
236 | 236 | } |
237 | 237 | |
238 | 238 | int i386_device::x87_inc_stack() |
https://github.com/mamedev/mame/commit/699d454d3e607c710b27cf3eb91667b60f5bf5c2 |
Previous | 199869 Revisions | Next |