home *** CD-ROM | disk | FTP | other *** search
/ Jason Aller Floppy Collection / 181.img / TASM-101.ZIP / CHAPXMPL.ARC / FROM_NEW.ASM < prev    next >
Assembly Source File  |  1989-05-02  |  386b  |  23 lines

  1.  
  2. ; FROM_NEW.ASM
  3.  
  4.        extrn    PopMessage_0:far
  5.        .model     large,c
  6.        .code 
  7.        public   FROM_ASM
  8.  
  9. FROM_ASM     proc
  10.        push  ds
  11.        mov   ax, OFFSET DGROUP:mess1
  12.        push  ax
  13.        call  FAR PTR PopMessage_0
  14.        pop   cx
  15.        pop   cx
  16.        ret
  17. FROM_ASM     ENDP
  18.  
  19.        .data
  20. mess1  DB       "Report: Condition Red",0
  21.        END
  22.  
  23.