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:
parent
1780f70232
commit
2a4fa63ace
1 changed files with 2 additions and 2 deletions
|
@ -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) \
|
||||
|
|
Loading…
Add table
Reference in a new issue