;
;  This is a sample configuration file for Turbo C 2.0
;  Copyright (C) 1988, 1989 Paradigm Systems.
;  All rights reserved.
;
;  This version is for the small/medium memory models.
;  If you are using the compact/large memory model,
;  remove STACK from DGROUP and make a separate
;  class as shown below.
;
;     class STACK = 0xxxx           ; For compact/large models
;     order DATA BSS BSSEND STACK   ; Recreate DGROUP
;

dup   DATA ROMDATA            ; Make a copy of the initialized data

class CODE = 0xf800           ; Assume ROM at F8000h
class DATA = 0x0400           ; And the program data at 04000h

order DATA BSS BSSEND STACK   ; Recreate DGROUP
order CODE CODEEND ROMDATA    ; Place the initialized data after
                              ; the program code

rom   CODE ROMDATA            ; ROM only the program and the
                              ; initialized data
