home *** CD-ROM | disk | FTP | other *** search
- IDEAL
- MODEL SMALL
-
- STACK 512
-
- UDATASEG
- buffer db 1024 dup (?) ; this will be put in the _BSS segment
-
- DATASEG
- junk db 'junk' ; this will be put in the _DATA segment
-
- CODESEG
-
- begin:
- mov ax, 4c00h ; just bogus code; exits to DOS right away
- int 21h
-
- END begin