home *** CD-ROM | disk | FTP | other *** search
/ Power-Programmierung / CD1.mdf / assemblr / library / tcmac / tmacs.asm < prev    next >
Assembly Source File  |  1987-07-11  |  465b  |  32 lines

  1.         page    ,132
  2.         title    tmacs test
  3. ;
  4. ; test file for the tmacs macros; assemble with each model spec as the
  5. ; parameter to model
  6. ;
  7. include    tmacs.asi
  8. ;
  9. .lall
  10.         model    LARGE
  11.         segdef    ttmacs
  12. ;
  13.         cseg    ttmacs
  14. procedure    farkle, public
  15.         mov    ax,offset str
  16. endproc        farkle
  17. ;
  18. procedure    snarf
  19.         mov    [str+5], '$'
  20. endproc     snarf
  21.         endcs    ttmacs
  22. ;
  23.         dseg    ttmacs
  24. str        db    'farkle and snarf','$'
  25.         endds    ttmacs
  26. ;
  27.         bseg
  28. arr        dw    10 dup (?)
  29.         endbs
  30. ;
  31.         end
  32.