home *** CD-ROM | disk | FTP | other *** search
/ Power-Programmierung / CD1.mdf / assemblr / tools / asm_lint / demo2.asm < prev   
Assembly Source File  |  1986-04-26  |  338b  |  14 lines

  1. Comment *
  2.  
  3.         This is the second of two ALINT demo files.
  4.  
  5. *
  6.  
  7. public a_dword              ; This one's OK
  8. extrn  Word1:word           ; So is this
  9. extrn  Byte1:dword          ; Error: it's a BYTE variable
  10. extrn  Byte2:byte           ; See DEMO1.ASM
  11. extrn  NotPublic:byte       ; Error: not PUBLIC anywhere
  12.  
  13. a_dword dd ?
  14.