home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 7 / 07.iso / c / c100 / 3.ddi / STARTUP.ZIP / TCPP10.RM < prev    next >
Encoding:
Text File  |  1990-09-01  |  837 b   |  25 lines

  1. ;
  2. ;    Paradigm LOCATE configuration file for Turbo C++ 1.0
  3. ;
  4. ;    This configuration file supports the building of ROMable code
  5. ;    using the small, medium, compact and large memory models.
  6. ;    For the huge memory model, make the following changes
  7. ;
  8. ;     order  DATA HUGEBSS HUGEBSSEND STACK        ; RAM class organization
  9. ;
  10.  
  11. reserve    0x10000 0xeffff                        ; Identify the empty regions
  12.  
  13. dup        DATA ROMDATA                            ; Make a copy of initialized data
  14.  
  15. class        CODE = 0xf000                            ; Assume loading at address F0000H
  16. class        DATA = 0x0040                            ; Data at address 00400H
  17.  
  18. order        DATA BSS BSSEND STACK                ; RAM class organization
  19. order        STACK FARHEAP                            ; Far heap begins after the stack
  20.  
  21. order        CODE INITDATA EXITDATA                ; ROM class organization
  22. order        EXITDATA ROMDATA ENDROMDATA
  23.  
  24. rom        CODE INITDATA EXITDATA ROMDATA    ; Output classes
  25.