You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
428 B
23 lines
428 B
;** segment ordering for MSDOS
|
|
;
|
|
;
|
|
|
|
; There are just two (real) segments, DOSCODE and DOSDATA.
|
|
; All the initialization and startup code in in the
|
|
; DOSCODE segment.
|
|
;
|
|
|
|
|
|
DOSCODE SEGMENT BYTE PUBLIC 'CODE'
|
|
DOSCODE ENDS
|
|
|
|
DUM SEGMENT PARA PUBLIC 'DUM'
|
|
DUM ENDS
|
|
|
|
DOSDATA SEGMENT WORD PUBLIC 'DATA'
|
|
DOSDATA ENDS
|
|
|
|
DOSDATALAST SEGMENT WORD PUBLIC 'DATA'
|
|
DOSDATALAST ENDS
|
|
|
|
DOSGRP GROUP DOSDATA,DOSDATALAST
|