comp.lang.ada
 help / color / mirror / Atom feed
* GNAT PROBLEM
@ 1995-03-08 21:44 Eric Molitor
  1995-03-09  1:01 ` Tore Joergensen
                   ` (3 more replies)
  0 siblings, 4 replies; 6+ messages in thread
From: Eric Molitor @ 1995-03-08 21:44 UTC (permalink / raw)


I'm currently using GNAT v2.00 while learning how to program in ADA. The 
only thing I cant understand is how to get rid of that stupid line at the 
top of my screen when I run one of my compiled programs. Is there a 
switch to shut it off?

Eric Molitor




^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: GNAT PROBLEM
  1995-03-08 21:44 GNAT PROBLEM Eric Molitor
@ 1995-03-09  1:01 ` Tore Joergensen
  1995-03-10  9:39 ` Peter Hermann
                   ` (2 subsequent siblings)
  3 siblings, 0 replies; 6+ messages in thread
From: Tore Joergensen @ 1995-03-09  1:01 UTC (permalink / raw)


Eric Molitor (emolitor@jax.jaxnet.com) wrote:
: I'm currently using GNAT v2.00 while learning how to program in ADA. The 
: only thing I cant understand is how to get rid of that stupid line at the 
: top of my screen when I run one of my compiled programs. Is there a 
: switch to shut it off?
I guess you are using OS/2. If not, forget this.
To get rid of the help-line temporarily, write help off. To get rid
of it permanently, delete $i in the prompt-line in the config.sys file.
BTW, if you are using a command-window you can get more lines if you write
mode 80 60 (60 lines, max=102).
--
______________________________________________________________________
Tore B. Joergensen,    |    e-mail:     tore@lis.pitt.edu
a norwegian student    |    snail-mail: 2201 Pittockstr.
a long way from home.  |                Pittsburgh, 15217 PA
                       |    web:        http://www.pitt.edu/~tojst1



^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: GNAT PROBLEM
  1995-03-08 21:44 GNAT PROBLEM Eric Molitor
  1995-03-09  1:01 ` Tore Joergensen
@ 1995-03-10  9:39 ` Peter Hermann
  1995-03-11 20:50 ` Michael Feldman
  1995-03-15  1:56 ` GNAT PROBLEM Mogens Jensen
  3 siblings, 0 replies; 6+ messages in thread
From: Peter Hermann @ 1995-03-10  9:39 UTC (permalink / raw)


Eric Molitor (emolitor@jax.jaxnet.com) wrote:
: I'm currently using GNAT v2.00 while learning how to program in ADA. The 
: only thing I cant understand is how to get rid of that stupid line at the 
: top of my screen when I run one of my compiled programs. Is there a 
: switch to shut it off?

I like it, because I know the compiler is still alive and running.

btw: it is "Ada", not "ADA", the times of the card punch are gone.

--
Peter Hermann  Tel:+49-711-685-3611 Fax:3758 ph@csv.ica.uni-stuttgart.de
Pfaffenwaldring 27, 70569 Stuttgart Uni Computeranwendungen
Team Ada: "C'mon people let the world begin" (Paul McCartney)



^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: GNAT PROBLEM
  1995-03-08 21:44 GNAT PROBLEM Eric Molitor
  1995-03-09  1:01 ` Tore Joergensen
  1995-03-10  9:39 ` Peter Hermann
@ 1995-03-11 20:50 ` Michael Feldman
  1995-03-22 20:55   ` GNAT and DJGPP Jack Beidler
  1995-03-15  1:56 ` GNAT PROBLEM Mogens Jensen
  3 siblings, 1 reply; 6+ messages in thread
From: Michael Feldman @ 1995-03-11 20:50 UTC (permalink / raw)


In article <3jl8go$o99@jaxnet.jaxnet.com>,
Eric Molitor <emolitor@jax.jaxnet.com> wrote:
>I'm currently using GNAT v2.00 while learning how to program in ADA. The 
>only thing I cant understand is how to get rid of that stupid line at the 
>top of my screen when I run one of my compiled programs. Is there a 
>switch to shut it off?
>
Not a GNAT problem, exactly.

This is an option for go32, the extender under which djgpp and GNAT run.
You can turn it off by looking at your go32 environment variable. 
It should say something like "set go32=topline..."

If you remove the "topline", the go32 tracing will go away.

I usually leave it on; I learn a lot about memory utilization.

Mike Feldman
------------------------------------------------------------------------
Michael B. Feldman -  chair, SIGAda Education Working Group
Professor, Dept. of Electrical Engineering and Computer Science
The George Washington University -  Washington, DC 20052 USA
202-994-5919 (voice) - 202-994-0227 (fax) - mfeldman@seas.gwu.edu (Internet)
------------------------------------------------------------------------
One, two, three ways an underdog: Ada fan, Mac fan, Old Liberal Democrat
------------------------------------------------------------------------
Ada on the WWW: http://lglwww.epfl.ch/Ada/ or http://info.acm.org/sigada/
------------------------------------------------------------------------



^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: GNAT PROBLEM
  1995-03-08 21:44 GNAT PROBLEM Eric Molitor
                   ` (2 preceding siblings ...)
  1995-03-11 20:50 ` Michael Feldman
@ 1995-03-15  1:56 ` Mogens Jensen
  3 siblings, 0 replies; 6+ messages in thread
From: Mogens Jensen @ 1995-03-15  1:56 UTC (permalink / raw)


Eric Molitor (emolitor@jax.jaxnet.com) wrote:
: I'm currently using GNAT v2.00 while learning how to program in ADA. The 
: only thing I cant understand is how to get rid of that stupid line at the 
: top of my screen when I run one of my compiled programs. Is there a 
: switch to shut it off?

: Eric Molitor


In case you use DOS it could be the status line from GO32.EXE you are 
referring to (also shows during compilation); to remove this line, find the 
line:
   set GO32=topline d:/djgpp/drivers/vga.grd gw 640 gh 480
or equivalent, in your autoexec.bat (or whatever) and remove the word 
"topline":
   set GO32=d:/djgpp/drivers/vga.grd gw 640 gh 480

This should work (refer to the readme.dj).


Greetings from Jens Jakob Jensen, Denmark - (Using my fathers account)



^ permalink raw reply	[flat|nested] 6+ messages in thread

* GNAT and DJGPP
  1995-03-11 20:50 ` Michael Feldman
@ 1995-03-22 20:55   ` Jack Beidler
  0 siblings, 0 replies; 6+ messages in thread
From: Jack Beidler @ 1995-03-22 20:55 UTC (permalink / raw)


IS there some way that I can tell DJGPP how much memory I want
it to use?  If there is a way, then I have a Microsoft Windows
environment in which I can run GNAT.

I built a visual basic front end for GNAT, my problem is that I
need a way to tell DJGPP how much memory I'm giving it to run.
If there is a way of doing that, then DJGPP won't conflict with
the .pif I am using to run GNAT.

-- 
+----------------------------------------+------------------------+
|John (Jack) Beidler                    ++   beidler@cs.uofs.edu  |
|  Professor, Computing Sciences Dept. ++                         |
|  University of Scranton             ++  (717) 941-7446 (voice)  |
| Scranton, PA 18510                 ++     (717) 941-4250 (FAX)  |
|      WWW site:  http://gopher.cs.uofs.edu/CS/cs.home.html       |
+------------------------------------+----------------------------+



^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~1995-03-22 20:55 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
1995-03-08 21:44 GNAT PROBLEM Eric Molitor
1995-03-09  1:01 ` Tore Joergensen
1995-03-10  9:39 ` Peter Hermann
1995-03-11 20:50 ` Michael Feldman
1995-03-22 20:55   ` GNAT and DJGPP Jack Beidler
1995-03-15  1:56 ` GNAT PROBLEM Mogens Jensen

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox