From mboxrd@z Thu Jan 1 00:00:00 1970 X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) on polar.synack.me X-Spam-Level: X-Spam-Status: No, score=-1.3 required=5.0 tests=BAYES_00,INVALID_MSGID autolearn=no autolearn_force=no version=3.4.4 X-Google-Language: ENGLISH,ASCII-7-bit X-Google-Thread: 103376,70b2e2ff07dcf078,start X-Google-Attributes: gid103376,public From: "JOSE VICENTE" <319089@cepsz.unizar.es> Subject: Low Level IO Date: 1998/08/06 Message-ID: <6qclfg$dpt$2@talia.mad.ibernet.es>#1/1 X-Deja-AN: 378551776 Organization: JOSE VICENTE X-MimeOLE: Produced By Microsoft MimeOLE V4.71.1712.3 Newsgroups: comp.lang.ada Date: 1998-08-06T00:00:00+00:00 List-Id: Does anyone know how can I read/write the parallel port using Linux and Gnat 3.10 ? I've been trying things like this and 'Storage Error' or 'Program Error' raises. ...... type Byte is mod 2**8; for Byte'Size use 8; Parallel_Port:Byte; for Parallel_Port'Address use System.Storage_Elements.To_Address(16#3BC#); ...... begin ...... Parallel_Port:=value; -- The exception raises at this point. ...... Thanks in advance.