From ee247fc7d2209602f336fcd6a705f7e108f9bb4c Mon Sep 17 00:00:00 2001 From: Sjoerd van der Berg Date: Sun, 6 Apr 2003 11:56:38 +0000 Subject: [PATCH] Running irq's when saving flags disabled for now. Imported-from: https://svn.code.sf.net/p/dosbox/code-0/dosbox/trunk@878 --- src/cpu/core_full/loadwrite.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/cpu/core_full/loadwrite.h b/src/cpu/core_full/loadwrite.h index 3a752932..914ff2eb 100644 --- a/src/cpu/core_full/loadwrite.h +++ b/src/cpu/core_full/loadwrite.h @@ -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 \ No newline at end of file