home *** CD-ROM | disk | FTP | other *** search
- start:
-
- rem WIDTH.COM
-
- rem This program is designed to change from 40- to 80-column mode and back again
- rem at whim.
-
- rem It requires approximately 64K of RAM.
-
- a$=command$
- if a$=" 40" then width40:
- if a$=" 80" then width80:
- goto help:
-
- rem This is the routine for 80 column mode.
-
- width80:
-
- width 80
- goto finish:
-
- rem This is the routine for 40 column mode.
-
- width40:
-
- width 40
- goto finish:
-
- help:
- print
- print
- print "You must specify the width, either 40 or 80 column mode."
- print
- print
-
- finish:
-
- end
-