home *** CD-ROM | disk | FTP | other *** search
/ The World of Computer Software / World_Of_Computer_Software-02-387-Vol-3of3.iso / e / emxdev8f.zip / REG.H < prev    next >
Text File  |  1992-08-01  |  543b  |  28 lines

  1. /* sys/reg.h (emx+gcc) */
  2.  
  3. #if !defined (_SYS_REG_H)
  4. #define _SYS_REG_H
  5.  
  6. #define GS      0
  7. #define FS      1
  8. #define ES      2
  9. #define DS      3
  10. #define EDI     4
  11. #define ESI     5
  12. #define EBP     6
  13. #define ESP     7
  14. #define EBX     8
  15. #define EDX     9
  16. #define ECX    10
  17. #define EAX    11
  18. #define TRAPNO 12
  19. #define ERRCD  13
  20. #define EIP    14
  21. #define CS     15
  22. #define EFL    16
  23. #define UESP   17
  24. #define SS     18
  25. #define FP387  19   /* Floating point registers starting here */
  26.  
  27. #endif /* !defined (_SYS_REG_H) */
  28.