home *** CD-ROM | disk | FTP | other *** search
- page ,132
- title tmacs test
- ;
- ; test file for the tmacs macros; assemble with each model spec as the
- ; parameter to model
- ;
- include tmacs.asi
- ;
- .lall
- model LARGE
- segdef ttmacs
- ;
- cseg ttmacs
- procedure farkle, public
- mov ax,offset str
- endproc farkle
- ;
- procedure snarf
- mov [str+5], '$'
- endproc snarf
- endcs ttmacs
- ;
- dseg ttmacs
- str db 'farkle and snarf','$'
- endds ttmacs
- ;
- bseg
- arr dw 10 dup (?)
- endbs
- ;
- end