home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 7 / 07.iso / c / c081_11 / 9.ddi / CHAPXMPL.ZIP / FROM_NEW.ASM < prev    next >
Encoding:
Assembly Source File  |  1991-02-13  |  517 b   |  27 lines

  1. ; Turbo Assembler    Copyright (c) 1988, 1991 By Borland International, Inc.
  2.  
  3. ; FROM_NEW.ASM
  4.  
  5. ; Interfacing Turbo Assembler and Turbo Prolog.
  6.  
  7.        extrn    PopMessage_0:far
  8.        .model     large,c
  9.        .code 
  10.        public   FROM_ASM
  11.  
  12. FROM_ASM     proc
  13.        push  ds
  14.        mov   ax, OFFSET DGROUP:mess1
  15.        push  ax
  16.        call  FAR PTR PopMessage_0
  17.        pop   cx
  18.        pop   cx
  19.        ret
  20. FROM_ASM     ENDP
  21.  
  22.        .data
  23. mess1  DB       "Report: Condition Red",0
  24.        END
  25.  
  26.  
  27.