00001
00002 c
00003 c Copyright (c) 1986,1987,1988,1989,1990,1991,1992,1993,
00004 c by Steve McMillan, Drexel University, Philadelphia, PA.
00005 c
00006 c All rights reserved.
00007 c
00008 c Redistribution and use in source and binary forms are permitted
00009 c provided that the above copyright notice and this paragraph are
00010 c duplicated in all such forms and that any documentation,
00011 c advertising materials, and other materials related to such
00012 c distribution and use acknowledge that the software was developed
00013 c by the author named above.
00014 c
00015 c THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR
00016 c IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
00017 c WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.
00018 c
00019 c
00020 c-----------------------------------------------------------------------
00021 c
00022 subroutine display text(text,ntext)
00023 save
00024 character*(*) text
00025 c ******************
00026 c Print a message in standard form. * DISPLAY TEXT *
00027 c ******************
00028 if(ntext.le.0)return
00029 call devoff
00030 c
00031 if(itek.eq.1)then
00032 rr=rl
00033 ss=sl
00034 call plot(-ro,-so,3)
00035 end if
00036 c
00037 lt=min(len(text),ntext)
00038 write(6,'(a)')text(1:lt)
00039 if(itek.eq.1)call plot(rr,ss,3)
00040 c
00041 end