1
0
Fork 0

8-bit flag saves need to save Overflow flag and now use cpu function for saving flags.

Imported-from: https://svn.code.sf.net/p/dosbox/code-0/dosbox/trunk@1170
This commit is contained in:
Sjoerd van der Berg 2003-07-27 22:55:28 +00:00
parent 1780f70232
commit 2a4fa63ace

View file

@ -26,9 +26,9 @@ Bitu get_PF(void);
#define SETFLAGSb(FLAGB) \
{ \
SETFLAGBIT(OF,get_OF()); \
flags.type=t_UNKNOWN; \
flags.word&=0xffffff00; \
flags.word|=(FLAGB&0xff); \
CPU_SetFlags((flags.word&0xffffff00)|((FLAGB) & 0xff)); \
}
#define SETFLAGSw(FLAGW) \