Source code of Windows XP (NT5)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

41 lines
830 B

  1. /*++
  2. Copyright (c) 1995 Microsoft Corporation
  3. Module Name:
  4. frag8.h
  5. Abstract:
  6. Prototypes for instruction fragments which operate on 8-bit BYTES.
  7. Author:
  8. 12-Jun-1995 BarryBo, Created
  9. Revision History:
  10. --*/
  11. #ifndef FRAG8_H
  12. #define FRAG8_H
  13. #define FRAGCOMMON0(fn) FRAG0(fn ## 8)
  14. #define FRAGCOMMON1(fn) FRAG1(fn ## 8, BYTE)
  15. #define FRAGCOMMON1IMM(fn) FRAG1IMM( fn ## 8, BYTE)
  16. #define FRAGCOMMON2IMM(fn) FRAG2IMM( fn ## 8, BYTE, BYTE)
  17. #define FRAGCOMMON2(fn) FRAG2(fn ## 8, BYTE)
  18. #define FRAGCOMMON2REF(fn) FRAG2REF(fn ## 8, BYTE)
  19. #define FRAGCOMMON3(fn) FRAG3(fn ## 8, BYTE, BYTE, BYTE)
  20. #include "shared.h"
  21. #include "shareda.h"
  22. #undef FRAGCOMMON0
  23. #undef FRAGCOMMON1
  24. #undef FRAGCOMMON1IMM
  25. #undef FRAGCOMMON2IMM
  26. #undef FRAGCOMMON2
  27. #undef FRAGCOMMON2REF
  28. #undef FRAGCOMMON3
  29. #endif //FRAG8_H