home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 7 / 07.iso / c / c082_144 / 7.ddi / EMUSRC.ZIP / EQUATES.ASI < prev    next >
Encoding:
Text File  |  1992-06-10  |  1.8 KB  |  51 lines

  1. ;[]-----------------------------------------------------------------[]
  2. ;|      EMURULES.ASI  --  global equates for the FPU                 |
  3. ;[]-----------------------------------------------------------------[]
  4.  
  5. ;
  6. ;       C/C++ Run Time Library - Version 5.0
  7. ;       Copyright (c) 1987, 1992 by Borland International
  8. ;       All Rights Reserved.
  9.  
  10.  
  11. emInt           equ     34h     ; vectors 34h..3Dh are used
  12. shortcutInt     equ     3Eh     ; vector 3Eh is for shortcut entry.
  13. emIntCode       equ     034CDh          ; Int   34h ..
  14.  
  15. ; Do not change these, unless you know what you are doing.
  16. _emulateInline_ equ     1       ; include code to handle 34..3D emulations.
  17. _singlePrec_    equ     0       ; include Single Precision code ?
  18. _Strict87_      equ     0       ; if false, skip some time-wasting obscure
  19.                                 ;       87 details in the emulation
  20. _decimal_       equ     1       ; make it include x87 load/store decimal
  21. _longDoubles_   equ     1       ; for compilers which support long doubles
  22. __SMALL__       equ     1       ; arbitrary choice: emu works with any model
  23. _shortcuts88_   equ     0       ; TB inspired shortcuts
  24. _TBasic_        equ     0       ; Turbo Basic version
  25. _TestaRossa_    equ     0       ; TestaRossa version
  26.  
  27. ; Ok to change these.
  28. Quattro3        equ     0       ; GUI Quattro version
  29. StackDeep       equ     0       ; simulate a deep stack with Invalid traps
  30. DualMode        equ     1       ; use 286 protected mode
  31.  
  32. ; FPU version number:
  33. ;       ?: TC1, Q1
  34. ;       1: TC2, TP5, Q2
  35. ;       2: TB2          - never shipped
  36. ;       2: TC3, Q3
  37. EmuVersion      equ     2
  38.  
  39. ; For TC3, I recommend
  40. ;       Quattro3 = 0
  41. ;       DualMode = 0
  42. ;       StackDeep = 0
  43.  
  44. ; For BC1, I recommend
  45. ;       Quattro3 = 0
  46. ;       DualMode = 1
  47. ;       StackDeep = 1
  48.  
  49.