home *** CD-ROM | disk | FTP | other *** search
- ; part of a Simplified External example, Goes with MAIN.ASM
- ;--------------------------------------------------------------
-
- IDEAL
- DOSSEG
- MODEL small
- PUBLIC Maximum
- Maximum = 100h
- DATASEG
- PUBLIC counter
- counter db 0Fh
- CODESEG
- PUBLIC subroutine
- PROC subroutine
- ret
- ENDP subroutine
- END