home *** CD-ROM | disk | FTP | other *** search
/ ProfitPress Mega CDROM2 …eeware (MSDOS)(1992)(Eng) / ProfitPress-MegaCDROM2.B6I / MAGAZINE / MISC / PCTV3N1.ZIP / CUTFAT.ASM < prev    next >
Encoding:
Assembly Source File  |  1992-02-05  |  302 b   |  19 lines

  1. IDEAL
  2. MODEL SMALL
  3.  
  4. STACK 512
  5.  
  6. UDATASEG
  7. buffer db 1024 dup (?) ; this will be put in the _BSS segment
  8.  
  9. DATASEG
  10. junk    db 'junk'      ; this will be put in the _DATA segment
  11.  
  12. CODESEG
  13.  
  14. begin:
  15.         mov ax, 4c00h  ; just bogus code; exits to DOS right away
  16.         int 21h
  17.  
  18. END begin
  19.