Author: jimtabor Date: Thu Aug 25 23:57:24 2011 New Revision: 53448
URL: http://svn.reactos.org/svn/reactos?rev=53448&view=rev Log: - Hax Fix rBuild.
Modified: trunk/reactos/boot/freeldr/freeldr/arch/i386/int386.S
Modified: trunk/reactos/boot/freeldr/freeldr/arch/i386/int386.S URL: http://svn.reactos.org/svn/reactos/trunk/reactos/boot/freeldr/freeldr/arch/i... ============================================================================== --- trunk/reactos/boot/freeldr/freeldr/arch/i386/int386.S [iso-8859-1] (original) +++ trunk/reactos/boot/freeldr/freeldr/arch/i386/int386.S [iso-8859-1] Thu Aug 25 23:57:24 2011 @@ -22,6 +22,9 @@
#include <arch/pc/x86common.h>
+#define I386FLAG_CF HEX(0001) // Carry Flag +#define I386FLAG_ZF HEX(0040) // Zero Flag +#define I386FLAG_SF HEX(0080) // Sign Flag /* Only these flags are propagated into Int386() */ #define FLAGS_PROP (I386FLAG_CF | \ I386FLAG_ZF | \