home *** CD-ROM | disk | FTP | other *** search
/ The World of Computer Software / World_Of_Computer_Software-02-386-Vol-2of3.iso / b / baswiz19.zip / PDQSTUB.ASM < prev    next >
Assembly Source File  |  1992-08-15  |  1KB  |  35 lines

  1. comment #
  2.  
  3.    +----------------------------------------------------------------------+
  4.    |                                                                      |
  5.    |        BASWIZ  Copyright (c) 1990-1992  Thomas G. Hanlin III         |
  6.    |                                                                      |
  7.    |                      The BASIC Wizard's Library                      |
  8.    |                                                                      |
  9.    |                        assembled with MASM 6.0                       |
  10.    |                                                                      |
  11.    +----------------------------------------------------------------------+
  12.  
  13. #
  14.  
  15. public  B$SETM
  16.  
  17.  
  18.  
  19. BW_MEM        segment word public 'CODE'
  20.               assume cs:BW_MEM
  21.  
  22.  
  23.  
  24. B$SETM        proc           far       ; stub for SETMEM function for P.D.Q.
  25.               ret
  26. B$SETM        endp                     ; stub for SETMEM function for P.D.Q.
  27.  
  28.  
  29.  
  30. BW_MEM        ends
  31.  
  32.  
  33.  
  34.               end
  35.