home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 15 / 15.iso / s / s038 / 10.ddi / 017.LIF / I486.H < prev    next >
Encoding:
C/C++ Source or Header  |  1992-07-02  |  566 b   |  26 lines

  1. /* i486.h - 80486 processor specific header file
  2.  * $Version: 1.1 $
  3.  * Copyright 1990 Intel Corporation, ALL RIGHTS RESERVED.
  4.  */
  5.  
  6. #if !defined(_I486_)
  7. #define _I486_
  8.  
  9. #include <i386.h>
  10.  
  11. #define FLAG_ALIGNCHECK    0x40000
  12.  
  13. #pragma _builtin_("byteswap"==47)
  14. unsigned int    byteswap(unsigned int);
  15.  
  16. #pragma _builtin_("invalidatedatacache"==48)
  17. void    invalidatedatacache(void);
  18.  
  19. #pragma _builtin_("wbinvalidatedatacache"==49)
  20. void    wbinvalidatedatacache(void);
  21.  
  22. #pragma _builtin_("invalidatetlbentry"==50)
  23. void    invalidatetlbentry(void far *);
  24.  
  25. #endif
  26.