home *** CD-ROM | disk | FTP | other *** search
/ Collection of Hack-Phreak Scene Programs / cleanhpvac.zip / cleanhpvac / PCACHSRC.ZIP / SERF.ASM < prev    next >
Assembly Source File  |  1990-07-12  |  630b  |  17 lines

  1. ;SERF.ASM                               B.Kauler
  2. ;required for linkage demo with MASTREXE and SLAVEXE.
  3. ;contains data for use by other modules.
  4. ;note data segment given same name as other modules.
  5. ;note no code (instructions) to access local data, so no
  6. ;need for an ASSUME DS:DATA directive.
  7. ;......................................................
  8.         public  data1
  9. ;......................................................
  10. data    segment byte    public  'data'
  11. data1   db      "this data is in third module",0Ah,0Dh,"$"
  12. ;more data could be put here.....
  13. ;....
  14. data    ends
  15.         end             ;no label
  16.  
  17.