;This file will call all funcs within the _INIT_ segment for any init it
;may require.
;Each entire in the segment must be as follows
;  db 0   ;this must be zero (else it will not be called)
;  db ?   ;this is the priority of the func.  0=highest  0xff=lowest
;  dd ?   ;offset of rountine to call

;Borland INIT segments
_INIT_ segment word public use32
bc_init_start:
_INIT_ ends

_INITEND_ segment word public use32
bc_init_end:
_INITEND_ ends

;Watcom INIT segments
XIB segment word public use32 'DATA'
wc_init_start:
XIB ends
XI segment word public use32 'DATA'
XI ends
XIE segment word public use32 'DATA'
wc_init_end:
XIE ends

