home *** CD-ROM | disk | FTP | other *** search
/ Power-Programmierung / CD1.mdf / assemblr / tools / asm_lint / demo1.asm < prev    next >
Assembly Source File  |  1986-04-26  |  467b  |  18 lines

  1. Comment *
  2.  
  3.         This is the first of two ALINT demo files.
  4.  
  5. *
  6.  
  7. public Word1                ; This is OK everywhere
  8. public Word2                ; Not EXTRN in any module, a mild error
  9. public Byte1                ; Declared as DWORD in DEMO2
  10. public Byte2                ; See below
  11. extrn  a_dword:dword        ; This is OK
  12.  
  13. Word1   dw ?
  14. Word2   label word
  15.  
  16. Byte1   label byte
  17. Byte2   equ $               ; This represents an ALINT limit--won't work
  18.