The Design and Implementation of the FreeBSD Operating System, Second Edition
Now available: The Design and Implementation of the FreeBSD Operating System (Second Edition)


[ source navigation ] [ diff markup ] [ identifier search ] [ freetext search ] [ file search ] [ list types ] [ track identifier ]

FreeBSD/Linux Kernel Cross Reference
sys/include/ibm/cpu.h

Version: -  FREEBSD  -  FREEBSD-13-STABLE  -  FREEBSD-13-0  -  FREEBSD-12-STABLE  -  FREEBSD-12-0  -  FREEBSD-11-STABLE  -  FREEBSD-11-0  -  FREEBSD-10-STABLE  -  FREEBSD-10-0  -  FREEBSD-9-STABLE  -  FREEBSD-9-0  -  FREEBSD-8-STABLE  -  FREEBSD-8-0  -  FREEBSD-7-STABLE  -  FREEBSD-7-0  -  FREEBSD-6-STABLE  -  FREEBSD-6-0  -  FREEBSD-5-STABLE  -  FREEBSD-5-0  -  FREEBSD-4-STABLE  -  FREEBSD-3-STABLE  -  FREEBSD22  -  l41  -  OPENBSD  -  linux-2.6  -  MK84  -  PLAN9  -  xnu-8792 
SearchContext: -  none  -  3  -  10 

    1 #ifndef _IBM_CPU_H
    2 #define _IBM_CPU_H 1
    3 
    4 #define X86_FLAG_C      (1L << 0)       /* Carry */
    5 #define X86_FLAG_P      (1L << 2)       /* Parity */
    6 #define X86_FLAG_A      (1L << 4)       /* Aux. carry */
    7 #define X86_FLAG_Z      (1L << 6)       /* Zero */
    8 #define X86_FLAG_S      (1L << 7)       /* Sign */
    9 
   10 #define X86_FLAG_T      (1L <<  8)      /* Trap */
   11 #define X86_FLAG_I      (1L <<  9)      /* Interrupt */
   12 #define X86_FLAG_D      (1L << 10)      /* Direction */
   13 #define X86_FLAG_O      (1L << 11)      /* Overflow */
   14 
   15 #endif

Cache object: ac11f0c0c949b3f753d51019bc338c5e


[ source navigation ] [ diff markup ] [ identifier search ] [ freetext search ] [ file search ] [ list types ] [ track identifier ]


This page is part of the FreeBSD/Linux Linux Kernel Cross-Reference, and was automatically generated using a modified version of the LXR engine.