home *** CD-ROM | disk | FTP | other *** search
/ Programming Languages Suite / ProgLangD.iso / Tu-Basic / REGNAMES.INC < prev    next >
Text File  |  1987-04-01  |  1KB  |  28 lines

  1. '┌───────────────────────────────────────────────────────────────────────────┐
  2. '│                  REGNAMES.INC                     │
  3. '│                                         │
  4. '│                   Turbo Basic                     │
  5. '│        (C) Copyright 1987 by Borland International             │
  6. '│                                         │
  7. '│   This file is to be used as a $INCLUDE file whenever you use the CALL    │
  8. '│ INTERRUPT statement in your Turbo Basic program. The file contains        │
  9. '│ named constants that represent the registers the CALL INTERRUPT statement │
  10. '│ can manipulate.                                 │
  11. '│                                         │
  12. '│ In order to use this file include it in your programs using the $INCLUDE  │
  13. '│ metastatement:                                                       │
  14. '│                                                                         │
  15. '│   $INCLUDE "REGNAMES.INC"                             │
  16. '│                                                           │
  17. '└───────────────────────────────────────────────────────────────────────────┘
  18.  
  19. %FLAGS = 0
  20. %AX    = 1
  21. %BX    = 2
  22. %CX    = 3
  23. %DX    = 4
  24. %SI    = 5
  25. %DI    = 6
  26. %BP    = 7
  27. %DS    = 8
  28. %ES    = 9