home *** CD-ROM | disk | FTP | other *** search
- 6-Jun-86 12:09:31-MDT,1375;000000000011
- Return-Path: <decuac!grebyn!karl@seismo.CSS.GOV>
- Received: from seismo.CSS.GOV by SIMTEL20.ARPA with TCP; Fri 6 Jun 86 12:08:07-MDT
- Return-Path: <decuac!grebyn!karl>
- Received: from decuac.UUCP by seismo.CSS.GOV with UUCP; Fri, 6 Jun 86 13:49:34 EDT
- Received: by decuac.DEC.COM (4.12/UUCP-Project/rel-1.0/5-18-86)
- id AA01405; Fri, 6 Jun 86 13:27:03 edt
- Received: by grebyn.UUCP (4.12/UUCP-Project/02.16.86)
- id AA03319; Fri, 6 Jun 86 13:22:07 edt
- Date: Fri, 6 Jun 86 13:22:07 edt
- From: grebyn!karl@seismo.CSS.GOV (Karl A. Nyberg)
- Message-Id: <8606061722.AA03319@grebyn.UUCP>
- Org.: Grebyn Corporation
- Phone: (703)-281-2194
- To: rconn@simtel20.arpa
- Subject: calc under VADS
-
- Rick,
-
- Here are the diffs I had to make to run calc under vads on a vax running
- ultrix 1.1. Seems to run just fine.
-
- 1) change integer_io to int_io, and instantiate int_io.
-
- 2) change the use of REG within its declaration (I don't know if that's a
- VADS bug or if it's for real, it reads to me like the program is in error) -
- the VADS reference is:
-
- error: RM 8.3(22): identifier cannot be used during its own
- declaration
-
- < REG : array (1..26) of INTEGER := (1..REG'LAST => 0);
- ---
- > REG : array (1..26) of INTEGER := (others => 0);
-
- 3) get rid of the with TERMINAL_IO; use TERMINAL_IO; it doesn't appear to be
- used anywhere anyway.
-
- -- Karl --
-