1
0
Fork 0

Running irq's when saving flags disabled for now.

Imported-from: https://svn.code.sf.net/p/dosbox/code-0/dosbox/trunk@878
This commit is contained in:
Sjoerd van der Berg 2003-04-06 11:56:38 +00:00
parent b3dcf45c8a
commit ee247fc7d2

View file

@ -69,6 +69,8 @@ static INLINE Bit32u Pop_32() {
flags.df =(FLAGW & 0x400)>0;flags.of =(FLAGW & 0x800)>0; \
flags.io =(FLAGW >> 12) & 0x03; \
flags.nt =(FLAGW & 0x4000)>0; \
}
#if 0
if (flags.intf && PIC_IRQCheck) { \
SaveIP(); \
PIC_runIRQs(); \
@ -76,3 +78,4 @@ static INLINE Bit32u Pop_32() {
} \
}
#endif